Archivo del Autor: carlosap

wps.com office

https://www.wps.com   Vea, edite y cree documentos Office en cualquier parte Más de 550 millones de usuarios de Android Más de 875,000 revisiones de Google Play Totalmente compatible con Microsoft Office® y Google Docs No se necesita suscripción: ¡100% GRATIS!

CREATE SYNONYM ( join multiple databases in tableau sql server)

CREATE SYNONYM [dbo].[tbl1] FOR [db1].[dbo].[tbl1] The above code, if run on db2, would create an object tbl1 which would behave as a table under the dbo schema in db2, but would actually reference [db1].[dbo].[tbl1]. If you are on 2000, then no, it’s fully qualified names or nothing, I’m afraid. Nota: –>Ubicarse en la base donde… Leer más »

Oracle Solaris 11 configuration and administration notas

Make some first indexing, updatedb note. you’ll have to use ‘slocate’, not ‘locate’   Oracle Solaris 11 configuration and administration Introduction See http://pbraun.nethence.com/doc/sysutils_solaris/network.html for network configuration. Vmware tools on solaris https://kb.vmware.com/kb/1023956 http://prefetch.net/blog/index.php/2011/09/28/getting-vmware-tools-to-configure-on-solaris-10-guests/ System configuration Disable graphical login, svcadm disable gdm Mount an NFS share, cd /etc/ vi vfstab nfssrv:/path/to/share  – /mnt/mountpoint nfs – no ro,soft If… Leer más »

Progress Explorer AdminServer slow

Before restarting the AdminServer, in order to rule out an issue with a java Ipv6 not releasing ports properly so it ends up with being owned by kernel: Edit DLC/properties/AdminServerPlugins.properties under the [PluginPolicy.Progress.AdminServer] section and add the following to the end of the current jvmargs line: -Djava.net.preferIPv4Stack=true -Djava.net.preferIPv6Addresses=false

Solaris Containers cheat sheet

This a quick cheat sheet of the commands that can be used when using zones (containers), for a more complete guide see solaris zones. Zone States Configured Configuration has been completed and storage has been committed. Additional configuration is still required. Incomplete Zone is in this state when it is being installed or uninstalled. Installed… Leer más »

zone creation solaris 10

https://blogs.oracle.com/mandalika/entry/solaris_10_zone_creation_for chmod 700 /desm chmod 700 /desm/zoneoe zlogin zoneoe shutdown -i 0 zoneadm -z zoneoe halt zoneadm -z zoneoe uninstall zoneadm list -cv zonecfg -z zoneoe ——————————- create -b set zonepath=/desm/zoneoe set autoboot=true set ip-type=shared add net set address=192.168.1.205 set physical=e1000g0 set defrouter=192.168.1.1 end remove inherit-pkg-dir dir=/usr remove inherit-pkg-dir dir=/sbin remove inherit-pkg-dir dir=/lib remove inherit-pkg-dir… Leer más »

postfix remove headers with MailScanner

I use postfix with MailScanner and that’s why I cannot use: /^Received:/ IGNORE in my header_checks file, because i use: /^Received:/ HOLD (see http://www.sng.ecs.soton.ac.uk/mailscanner/install/postfix.shtml ) But it’s no problem, because it’s possible to remove mail headers also with MailScanner. Example: ======== You want to remove information about your LAN structure from mail headers sent from… Leer más »