Viewing 14 posts - 16 through 29 (of 29 total)
I mean with just normal text.
I could load the following text, "My cat is furry" into two different encoding, and SQL sees them as different.
December 9, 2009 at 8:18 pm
I FIGURED IT OUT!
The problem wasn't the slashes....the problem was a bulk insert statement requires its path put in quotes.
when I did this (set @var = '\\stuff')....I was providing the...
December 4, 2009 at 12:50 pm
dmoldovan (12/4/2009)
Can you post the error message?
MSG 102, LEVEL 15, STATE 1, Line 1
Incorrect syntax near '\'.
I should mention I have also tried escape all the slashes with [] and...
December 4, 2009 at 12:40 pm
dmoldovan (12/4/2009)
ET @RUNNER =
'Bulk Insert #Table
FROM ' + @SOURCE +
' WITH (ROWTERMINATOR = '''')'
For the row terminator - see...
December 4, 2009 at 11:31 am
Jeff Moden (11/4/2009)
1. How many rows are in the table?
2. How many total rows will be...
November 5, 2009 at 1:28 pm
Basically we have clients that use the database...and they are very touchy. If any little thing happens our client support team starts getting calls....which is not acceptable to my managers.
So...
November 4, 2009 at 8:03 am
Thanks, I've heard a few other recommendations for Itzik so I think I'll take a look.
November 2, 2009 at 6:31 am
Michael Valentine Jones (10/30/2009)
huston.dunlap (10/30/2009)
...Michael, I'm a bit confused on the code below, I'm not familiar with output statements...
What did you find when you looked it up in SQL Server...
October 31, 2009 at 9:40 am
Thank you for the answers.
Michael, I'm a bit confused on the code below, I'm not familiar with output statements. In particular, I'm not sure what this block of code does:
INSERTED.MyTablePK,
DELETED.FULLNAME,
INSERTED.FULLNAME
Michael...
October 30, 2009 at 3:36 pm
Jeff Moden (10/28/2009)
October 28, 2009 at 9:05 pm
I tried something new today to see if it would help.
I split my data into two tables, one where the length of the FULLNAME field was less than 450 characters...
October 28, 2009 at 9:32 am
jagadeesanpv (10/28/2009)
like
Update #temp
set fullname = 'bill'
where fullname = 'billy'
I think if you use this way you can avoid calling...
October 28, 2009 at 7:23 am
The problem is your where clause. You are doing an equal statement on two different tables but haven't actually joined them together.
I am guessing the "dbo.tblCUSTOM281009" in your where clause...
October 27, 2009 at 5:18 pm
Thank you for your help sir!
October 4, 2009 at 1:36 pm
Viewing 14 posts - 16 through 29 (of 29 total)