Viewing 15 posts - 37,381 through 37,395 (of 39,818 total)
There is a syslogins table in master. It may be materialized, so do not use EM. Use Query Analyzer to run "select * from syslogins"
A domain group is an NT...
July 30, 2002 at 9:42 am
Amazing. I was just starting to use this to get a feel for my new environment and, while not perfect, it handled a number of my needs. I guess it's...
July 30, 2002 at 9:37 am
Good enhancement. We'll add it to the list.
Steve Jones
July 30, 2002 at 9:33 am
Andy is correct. The main issue for me has been that I may rollover to another system and then want that to be the primary until I decide to move...
July 29, 2002 at 5:45 pm
I don't think there is a performance difference, but I could be wrong.
Steve Jones
July 29, 2002 at 5:42 pm
Not that I know of. I think you will have to go through each one.
Steve Jones
July 29, 2002 at 2:44 pm
Aha! I see your issue. Sorry
![]()
What you need to do is capture the msgID from msgPopup. Then delete the MsgInfo table and finally the msgPopup (or...
July 29, 2002 at 2:43 pm
Skip this in the maintenance plan and write a job to do this directly.
Steve Jones
July 29, 2002 at 2:41 pm
I sort of like the idea, though I tend to agree with the posters about the downfalls.
However, the intermediate table used to relate items and allow flexibility is a technique...
July 29, 2002 at 2:40 pm
I prefer log shipping or some variant I've developed. Easier to roll over/back to me, but I'm not a replication fan.
Steve Jones
July 29, 2002 at 12:58 pm
You could use a while loop to build the results, but it might be ugly if this is large.
I'm sure there is something, but can't think off the top of...
July 29, 2002 at 12:02 pm
If these are in two tables, then you need two delete statements.
To delete the msgPopup,
delete msgpopup
FROM msgPopup INNER JOIN msgInfo
ON (msgPopup.msgID = msgInfo.msgID)
INNER JOIN msgMessage
ON (msgInfo.msgID = msgMessage.msgID)
WHERE
Sender...
July 29, 2002 at 11:56 am
I believe this is how many ADO connections work. They "prepare" a statement on the server and execute it with sp_Executesql.
What are the front end connections?
Steve Jones
July 29, 2002 at 11:54 am
Interesting. Hadn't noticed that since I tend to script things and never worried.
How big is the db and what was the original size?
Steve Jones
July 29, 2002 at 11:50 am
Viewing 15 posts - 37,381 through 37,395 (of 39,818 total)