Viewing 15 posts - 436 through 450 (of 920 total)
Sigh. What exactly are you trying to do when you get this message? The message itself is pretty clear about the problem. At leaast one value of...
August 6, 2010 at 1:48 pm
Form this:
http://msdn.microsoft.com/en-us/library/ms178804.aspx
it doesn't appear there is a recognized designation for NULL. How is the flat file being produced? Can you run it through some other tool (like sed)...
August 6, 2010 at 1:34 pm
I think you may have a problem with both the 'select' and update statements. With no 'where' clause, the selects will return the whole table, and the variables will...
August 6, 2010 at 1:14 pm
We don't normally set it as a standard practice, but we watch the paging and set it if needed.
August 6, 2010 at 12:30 pm
There isn't any way to use a newer version backup to restore to an older version of SQL Server.
You'll have to script out all the objects and copy the data....
July 30, 2010 at 9:43 am
Take a look at REPLACE.
REPLACE (string_expression,string_pattern,string_replacement)
select replace(phone_num, '-','')
July 27, 2010 at 4:52 pm
As long as we're all just guessing...
Maybe the old developer zipped up his SQL to deliver to you. You might try to unzip the file and see what happens.
If...
July 27, 2010 at 4:48 pm
For the BBQ fans at PASS in Seattle, the Warthog in Fife, and the Ark in Northeast Tacoma (both about 35 minutes south) are worth a trip.
July 23, 2010 at 12:34 pm
Lutz's solution will be far faster than the cursor and will ensure the rows are returned correctly. The SQL Server isn't required to give the rows back to you...
July 18, 2010 at 12:43 pm
Are you trying to record the text of the dml that did the update? If the updates all come through procs, you might look at this:
http://www.sqlservercentral.com/articles/SQL+Server+2005+-+TSQL/2765/
Other than that, I...
July 16, 2010 at 5:05 pm
The way you have this set up, you can't ever be guaranteed to get the output you want. Based on the output, my assumption is that you want the...
July 16, 2010 at 2:31 pm
Without some additional information, I'd just be guessing. Could you post both the queries and provide a little context about when and how they are executed.
July 13, 2010 at 4:24 pm
How big are your databases? I think the express edition (free) will now support up to 10 gig.
June 29, 2010 at 1:39 pm
D'oh. Yeah, what Gail said.
June 25, 2010 at 3:27 pm
Viewing 15 posts - 436 through 450 (of 920 total)