`
文章列表
方法一: a. [root@sample ~]# /etc/rc.d/init.d/sendmail stop  --关闭sendmail服务 或者 [root@sample ~]# service sendmail stop  --关闭sendmail服务 Shutting down sendmail: [ OK ] Shutting down sm-client: [ OK ] b. [root@sample ~]# chkconfig sendmail off  --关闭sendmail自启动 c. [root@sample ~]# chkconfig --list ...
查找目录下的所有文件中是否含有某个字符串,并且只打印出文件名 find .|xargs grep -ri “abc.csv” -l  
一,通过命令修改主机名 hostname #查看当前主机的主机名 hostname NEWHOSTNAME #临时修改当前主机名 二,通过配置文件修改主机名 vi /etc/sysconfig/network #通过配置文件修改主机名 NETWORKING=yes HOSTNAME=NEWHOSTNAME #修改该值作为主机名,如:hadoop01 修改hosts 修改 /etc/hosts加入IP与主机名字的映射,如: 127.0.0.1  localhost.localdomain localhost  ---不要删除::1             localhost6.local ...
方法一:[root@localhost sbin]$ /sbin/ifconfig 就可以出现使用了 方法二:[root@localhost sbin]$ export PATH=$PATH:/sbin 这样设置后,下次就可以直接访问了,免处第一种的麻烦,但是只针对一个会话 方法三:root 用户编辑 /etc/profile 在文件最后追加 export PATH=$PATH:/sbin ,然后source /etc/profile 方法四:修改/etc/profile文件,注释掉if语句即可 把下面的if语句注释掉: # Path manipulation if [ " ...
如果您在启动 sendmail 的时候,出现类似这段文字:  *** Warning: File 'virtusertable.db' has modification time in the future (2003-01-13 11:57:26 > 2003-01-13 06:04:40)  make: warning: Clock skew detected. Your build may be incomplete.  这表示您在安装 Linux 的时候,可能发生一些时间上面的错误判断了!导致于你的 sendmail 相关的设定档竟然比目前的时间还要新,也就是该档案乃『来自 ...
9版本以后可以在session的Customer Session Properties 中添加: RemoveOutputHeaderHash = Yes
需求:      1. A      1. B      1. C   ------>  1.  A | B | C      2. D               2. D | E      2. E 解决方法:      1. 先根据id做sorter      2. 再在AGG里面勾选id, 作为group by       3. 增加变量v_pre_id 存放上一个id记录      4. 增加变量VARR 自定义聚合函数:           VARR = IIF(id = v_pre_id,value|| '|' ||VARR, value)    ...
在linux/Unix操作系统下,读取MS Access或者Excel文件可以通过如下三种方式: 1. Informatica Power Channel(需要license支持) :Power Channel可以通过FTP穿过局域网、广域网传输大量复杂加密的文件(原文释义:power channel helps to transfer large amount of encrypted and compressed data over LAN,WAN through firewalls ,transfers files over FTP ) 2.Sequelink ODBC方式,通过桥接 ...
E-mail on Windows can be sent in two ways :   1. Using MAPI which is if you have Microsoft Outlook configured to send the mails, then this is default way which Informatica considers for sending mails.   2. Second one is using SMTP, for which SMTP relay service to send mails should be enabled a ...
find /data/infa_shared/Temp/ -name '*' -print0 |xargs  -0 -n 1000 rm -f 
in shell, there is a special variable $?, which catch  the status of last command:   after "ls", "echo $?" will return 0, meaning a successful command;  after "xxxxxx", "echo $?" will be a non-zero, since xxxxxx is not an command.   Now, in the above scr ...
In order to use Operating system profiles, the umask should be set to 0 for the userid who starts the Informatica services.    Check if the umask is 0. This can be done by executing the command umask at the UNIX command prompt.    If the value is not zero, then set the value to zero by executin ...
resource link:http://www.disoln.org/2014/03/How-to-Avoid-The-Usage-of-SQL-Overrides-in-Informatica-PowerCenter-Mappings.html Many Informatica PowerCenter developers tend to use SQL Override during mapping development. Developers finds it easy and more productive to use SQL Override. At the same tim ...
原文连接:http://bbs.bathome.net/thread-3334-1-1.html 【方案一】删除指定路径下指定天数之前(以文件的最后修改日期为准)的文件:BAT + REG + VBS   @echo off ::演示:删除指定路径下指定天数之前(以文件的最后修改日期为准)的文件。 ::如果演示结果无误,把del前面的echo去掉,即可实现真正删除。 ::本例调用了临时VBS代码进行日期计算 ::本例为兼容不同的日期格式,调用reg命令(XP系统自带)统一设置日期格式, ::处理完毕之后再把日期格式恢复成原来的状态。 rem 指定待删除文件的存放路径 s ...
今天要把一个方案导出到另一个电脑上,使用Expdp逻辑导出,首先在DBA用户下创建路径 create directory dump_dir as 'D:\backup'; 然后运行命令: expdp fms/fms directory=EXPBACKUP_DIR dumpfile=fms.dmp logfile=fms.log schemas=fms 结果报错: ORA-39002: 操作无效 ORA-39070: 无法打开日志文件。 ORA-39087: 目录名 EXPBACKUP_DIR 无效 使用SELECT * FROM dba_directories;查看发现EXPB ...
Global site tag (gtag.js) - Google Analytics