logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

Extract data from DB to flat file

方法1:1)A.sql DECLARECURSOR c_get_sup_list ISSELECT source_name, source_org_id, org_name, country_code  FROM agg_supplier WHERE record_status = m   AND generated_date is nullORDER BY source_name;BEGIN

Cursor Versus While Loop

http://www.mssqltips.com/sqlservertip/1599/sql-server-cursor-example/http://www.mssqltips.com/sqlservertip/1216/executing-a-tsql-batch-multiple-times-using-go/1.Cursor Example : DECLARE @n

procedure, function, array,cursor

procedure, function, array,cursor

在PL/SQL 中打印信息

aaa.sqlset serverout onDECLARE  b_cnt NUMBER DEFAULT 1;  v_cnt NUMBER DEFAULT 0;  supp_cnt NUMBER DEFAULT 0;  tmp_cnt NUMBER;  batch_no_max NUMBER;  batch_no_min NUMBER;  CURSOR c_get_cnt IS  SELECT 

#sql
登录Linux时/etc/profile、~/.bash_profile等几个文件的执行过程

在登录Linux时要执行文件的过程如下:在刚登录Linux时,首先启动 /etc/profile 文件,然后再启动用户目录下的 ~/.bash_profile、 ~/.bash_login或 ~/.profile文件中的其中一个, 执行的顺序为:~/.bash_profile、 ~/.bash_login、 ~/.profile。如果 ~/.bash_profile文件存在的话,一般还

#linux#bash
关于linux下远程挂载文件系统的总结

<!-- /* Style Definitions */ table.MsoNormalTable{mso-style-name:"Table Normal";mso-tstyle-rowband-size:0;mso-tstyle-colband-size:0;mso-style-noshow:yes;mso-style-parent:"";mso

#linux#windows#服务器 +1
linux常用命令

linux常用命令

#linux
cronjob & crontab

From : http://blog.csdn.net/bonny95/archive/2009/09/24/4589069.aspx Cronjob – 快速入门 Cron 是UNIX, SOLARIS,LINUX下的一个十分有用的工具。通过Cron脚本能使计划任务定期地在系统后台自动运行。这种计划任务在UNIX, SOLARIS, LINUX下术语为cron jobs。

修改文件时间与创建新文件:touch

 修改文件时间与创建新文件:touchfrom cnbird2008的专栏7.3.5  修改文件时间与创建新文件:touch在介绍ls命令时,提到每个文件在Linux下面都会记录3个主要的修改时间: • modification time(mtime,修改时间):当该文件的"内容数据"更改时,就会更新这个时间。内容数据指的是文件的内容,而不是文件的属性。 • status ti

#linux#bash
到底了