Viewing 15 posts - 47,221 through 47,235 (of 59,064 total)
Along with the other suggestions, I'd also take the time to upgrade to at least Service Pack 2. From what I saw on my own machine, SP2 fixed a...
November 14, 2008 at 8:42 am
Heh... no, not a waste. In fact, thank you very much! I now know how long it takes to create an index on an INT column that has...
November 14, 2008 at 8:38 am
Oh yeah... almost forgot...
The "AT linked_server_name" probably cannot be a variable... you'll need to use dynamic SQL to create the EXEC's, and then execute the dynamic SQL. That can...
November 14, 2008 at 8:32 am
Damned smiley faces... wish they could fix that...
Here's the listing without the smiley...
[font="Arial Black"]Execute a pass-through command against a linked server[/font]
{ EXEC | EXECUTE }
...
November 14, 2008 at 8:27 am
I've never had to do that before but, according to BOL, here's the correct syntax for how to do it...
[font="Arial Black"]Execute a pass-through command against a linked server[/font]
{ EXEC |...
November 14, 2008 at 8:25 am
I also checked the UPDATE() function (you never know)... the one that checks per column... same disappointment...
DROP TABLE dbo.TriggerTest
GO
CREATE TABLE dbo.TriggerTest (ColA INT, ColB INT)
GO
CREATE TRIGGER MyTrigger
...
November 14, 2008 at 8:20 am
Wow... I just tried it...
CREATE TABLE dbo.TriggerTest (ColA INT, ColB INT)
GO
CREATE TRIGGER MyTrigger
ON dbo.TriggerTest
AFTER INSERT, UPDATE
AS
SELECT COLUMNS_UPDATED()
GO
INSERT INTO...
November 14, 2008 at 7:57 am
When you guys made the "new" TempDB, did you make sure it was still set to the "Simple" recovery mode?
November 14, 2008 at 12:13 am
Heh... loops... IF's... RBAR...
The hard part is figuring out how many of each character type is in the password and the following code figure that out nicely. You can...
November 14, 2008 at 12:09 am
See the following article for how to do the CSV concatenation along with some pitfalls to avoid...
http://www.sqlservercentral.com/articles/Test+Data/61572/
To help us give you a better/tested answer, take a look at the link...
November 13, 2008 at 11:38 pm
Can you show what you've tried, so far?
November 13, 2008 at 11:34 pm
UPDATE t5
SET UpdateField = CASE
...
November 13, 2008 at 11:32 pm
timothyawiseman (11/13/2008)
November 13, 2008 at 7:58 pm
sql-oholic (11/13/2008)
if i change temp table to global temp table, it works.
It's been a while since I've had to do such a thing, but that just doesn't seem right to...
November 13, 2008 at 7:53 pm
Thanks, Goldie. Glad to "meet" you. I appreciate it. 🙂
November 13, 2008 at 6:40 pm
Viewing 15 posts - 47,221 through 47,235 (of 59,064 total)