Viewing 15 posts - 4,921 through 4,935 (of 7,636 total)
Try the SQL Native Client instead.
November 5, 2008 at 7:47 am
In that case you might try DMO as well.
As for the BINARY thing, I wouldn't know, the last time I wrote directly to the Registry was years ago and in...
November 5, 2008 at 7:39 am
Peter (11/5/2008)
November 5, 2008 at 6:35 am
These do not seem well-normalized to me. It seems like you should have at least 2 different tables for each "group". One to describe the elements of the...
November 5, 2008 at 6:13 am
Yes, you can do this. However, you may need to separate the individual commands into separate batches by using Dynamic SQL invocations.
November 4, 2008 at 10:57 pm
Glad we could help.
November 4, 2008 at 10:51 pm
I have done something like this with SQL Mail (sadly, it is not possible with Database Mail).
November 4, 2008 at 10:42 pm
COALESCE() is used to replace NULLs with another value:
COALESCE(A, B, C, .., Z)
The coalesce function searches through all of the parameters, left to right, and returns the first one that...
November 4, 2008 at 10:13 pm
You have to use the "DEFAULT" keyword:
select dbo.CalculateNumber(DEFAULT, DEFAULT)
Granted, not very useful, but that's how it works. 🙁
November 4, 2008 at 9:57 pm
What ODBC provider/driver are you using?
November 4, 2008 at 9:40 pm
Like this:
UPDATE Tmp_DatabaseLog
Set Object = {YourNullReplacementValue}
From Tmp_DatabaseLog
Where Object IS NULL
November 4, 2008 at 8:57 pm
Well, I would take it to Microsoft then.
November 4, 2008 at 8:54 pm
Viewing 15 posts - 4,921 through 4,935 (of 7,636 total)