Viewing 7 posts - 1 through 7 (of 7 total)
I am trying to do something very similar, but I am not sure how to go about creating destination file property a variable with "evaluate expression" true. Can somebody...
March 13, 2006 at 2:00 pm
Why can't you simply replace "," with "." before passing the value to SQL?
November 9, 2004 at 8:12 am
Try creating a new bcp format file using
bcp MBLOGS_DEV..AuditJournal out c:\fmtAuditJournal.txt -Sservername -Uuid -Ppwd
The new file should have default collation.
Hope it helps!
November 8, 2004 at 2:52 pm
Turn on Just in Time debugging option -
November 5, 2004 at 8:04 am
Run the following script (ammended version of post by Journeyman). Result will be 1.
CREATE TABLE #TestUpdateA (ColA Char(1),ColB Int)
GO
CREATE TABLE #TestUpdateB (ColA Char(1),ColB Int)
GO
INSERT INTO #TestUpdateA VALUES('A','0')
GO
INSERT INTO #TestUpdateA...
September 20, 2004 at 7:48 am
An auto-created statistic starts with the prefix _WA_Sys and is not "named _WA_Sys"
August 24, 2004 at 6:56 am
How do you insert results of sp_who2 in a table?
August 11, 2004 at 6:55 am
Viewing 7 posts - 1 through 7 (of 7 total)