Viewing 15 posts - 16 through 30 (of 33 total)
Thanx Remi
even I took date out like following T-SQL it still given error.. I know i have mistake somewhere ..here it is error msg.. at the bottom..
DECLARE @dbsize dec(15,2)
DECLARE...
May 19, 2005 at 12:04 pm
Hi Folks
I have solved this..It was my mistake.. It was like this:
"exec master..xp.cmdshell @delFile"
should be like this:
"exec master..xp_cmdshell @delFile, NO_OUTPUT"
May 17, 2005 at 7:11 am
Hi folks
I have solved the file exists code part. The only different was that I was putting quotés around @file variable..(SET @File = '''C:\'+@dbname+'.bak''') which should be like this (SET...
May 17, 2005 at 5:55 am
Thanx for response guys ...
Mike Metcalf: here it is detail of upgrade situtaion..
database size is not very big.. just 300 mb.. There ofcourse two databases.
1.one upgrade from another one. data...
April 26, 2005 at 5:25 am
Thanks Dinesh... I knew this that transfer can possible using either DTS or BCP. But I have to store above information about flat file into table.. how i do as...
February 16, 2005 at 9:10 pm
Hi
chechk this post..
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=169&messageid=152797
February 15, 2005 at 11:15 pm
Thanks!!! Frank Kalis
I really appreciate this help... could you know how and where can i access to more basic information on this...
February 15, 2005 at 11:07 pm
Thanks Guys.. It is really understandble..
PW: is this possible if you provide sample example of DTS package that you mentioned in your answer??
hoo-t: where can find more about dir...
February 1, 2005 at 11:24 pm
Hi
suppose if i have another field in same table and want to pass value to this field from BCP format file...(or another way through BCP) is this possible???
if yes then could some one help me..I...
January 4, 2005 at 2:52 am
Thanks Thang...
really appreciate your help ... it's work perfectly
December 30, 2004 at 10:41 pm
here it is one way you can do this..according to your problem..
SQL should be like this:-
SELECT t1.transano, t1.prodcode, SUM(t1.qty) AS transA_qtycheck, SUM(t2.qty) AS transB_qty_in_hand, SUM(t1.qty) - SUM(t2.qty) AS Diff
FROM ...
December 9, 2002 at 7:20 am
try this following hirenk...
1. create bat file delete.bat/delete.cmd
2. in file...
@ECHO OFF
del "destination path of file" space /q
exit
save the file and run...
December 6, 2002 at 6:06 am
for Antares......
since last reply, I have setup whole process like this in DTS package..
1. excecute command for backup
2. on success execute process task FTP to required server
3. then delete backup...
December 6, 2002 at 6:00 am
David
plz see following link for sql 6.5 and 7.0.
http://www.sqlteam.com/item.asp?ItemID=6002
I hope it will help you, not for me cos using SQL 2000 Enterprise.
regards
swarn
December 5, 2002 at 4:00 am
Hi Antares
em using sql 2000 enterprise edition....
yes I have checked the rights on folder. cos when I fetch the file through third party software (ws_ftppro 7.0) or via browser then...
December 5, 2002 at 1:42 am
Viewing 15 posts - 16 through 30 (of 33 total)