Feeds:
Posts
Comments

Archive for January, 2009

Tell RDBMS Intra SQL Transaction?

Trying to capture some sql server/sybase related research (minimal). I need to tell the underlying RDBMS type the current statement is running on and run a raiserror dependant on it (as the method signature is heterogenous). Intra-procedure to support portable code. However, @@servername is the closest I’ve got so far, which is crap, and the [...]

Read Full Post »

cURL FTP Usage

Transfer file by FTP
curl -T /home/mrsock/tactical/recurseExceptionMessages.txt ftp://login:password@ftpserver.com/test/recurseExceptionMessages.txt

FTP rename transferred file:
curl -Q “RNFR test/recurseExceptionMessages.txt” -Q “RNTO test/recurseExceptionMessages.txt.newname” “ftp://login:password@ftpserver.com”

Read Full Post »