Viewing 15 posts - 46 through 60 (of 789 total)
The following will produce the desired results without the the need for a loop. It works on your example record set, but I'm not sure if it's what you want...
June 27, 2004 at 5:10 pm
Tim,
a couple of questions:
1) what i sthe error msg you get from the log shipping restore?
2) is the DTS export just a straight export or are there other bits? To...
June 27, 2004 at 2:26 am
TempDB is re-created when you start SQL, which is why you lose the users and privileges.
You can add them to model with the required privilege, therefore the creation of tempdb...
June 26, 2004 at 10:33 pm
Keith,
INSERT... SELECT is not minimally logged, but SELECT... INTO is.
If your migration strategy allows, see what results you get from say:
SELECT columns|*
INTO target /* must not already exist */
FROM...
June 26, 2004 at 10:14 pm
Can you post your code?
June 24, 2004 at 3:52 am
Phew! I thought it was just me.
June 24, 2004 at 1:45 am
Fredy,
xp_cmdshell isn't the only way to go. Among a probable multitude of methods there's probably WRITETEXT and UPDATETEXT that could be used in conjunction with OLE automation and the filesystemobject methods. ...
June 23, 2004 at 3:38 am
I've previously done this in a rather over-complicated way of using xp_cmdshell to determine where the "textcopy.exe" was located and then using xp_cmdshell again to invoke it to do the...
June 23, 2004 at 1:31 am
How about:
select distinct s1.Person,
[Item #1]=s1.[Item #] ,
[Item Description 1]=s1.[Item Description] ,
[Item #2]=s2.[Item #] ,
[Item Description 2]=s2.[Item Description]
from sales s1
join sales s2 on s1.person =...
June 21, 2004 at 4:50 pm
Duncan,
I'm sorry to say I tried everything you did, substituting tempdb for Duncan_test , and it worked fine.
Are there any special attributes/options associated with the SQL2000 version of Duncan_Test that...
June 21, 2004 at 6:28 am
What is the error you get?
June 21, 2004 at 6:06 am
Glad we sorted that out before you got frustrated and tried out the "format" command.
June 17, 2004 at 2:09 am
Technically speaking, you're right Brent. And the 50+% of people who chose the "correct" answer are wrong (oops, that includes me :crazy.
I think we tend to...
June 17, 2004 at 2:05 am
You are looking in the SQL Server's C:\WINNT\system32 directory, and not your own local C:\WINNT\system32, right?
June 16, 2004 at 7:00 am
Jim,
Now that you mention the 3rd party monitor, I have previously experienced a HP monitoring system that took over control of the errorlog in a similar fashion. I think at the time...
June 16, 2004 at 1:27 am
Viewing 15 posts - 46 through 60 (of 789 total)