Viewing 15 posts - 5,326 through 5,340 (of 14,953 total)
Move those 5 to a different group, copy the permissions from one to the other, and then add the new permissions to the new group.
Anything else will be more difficult...
January 13, 2011 at 9:45 am
Take an exclusive lock on the table, disable the trigger, import the data, enable the trigger, unlock the table. Or will that take too long and block too many...
January 13, 2011 at 9:40 am
Can you modify the triggers?
If so, you could probably use User_ID to detect who the transaction is coming from, and ignore inserts that are originated from your login. Or...
January 13, 2011 at 9:35 am
I wouldn't build this in this pattern.
Automated restores almost always work better if they query the backupset data from msdb. If you do that, you don't need all this...
January 13, 2011 at 9:29 am
Roy Ernest (1/13/2011)
January 13, 2011 at 9:25 am
Jeff Moden (1/12/2011)
CELKO (1/12/2011)
Using BIT is bad and a NULL bit makes no sense. Using the proprietary UPDATE..FROM.. syntax has lots of problems with cardinality and portability.
I don't care about...
January 13, 2011 at 7:27 am
Steve Jones - SSC Editor (1/12/2011)
If you want to work for a half hour, I...
January 13, 2011 at 7:17 am
Makes sense. Glad you got it resolved.
January 13, 2011 at 7:14 am
Yes, if the update includes multiple rows, the trigger will have a problem. I've never yet seen a login process that allowed for a multi-row log entry, since every...
January 13, 2011 at 7:09 am
Can you post the whole script/procedure? Might help if we can see what this is doing.
January 13, 2011 at 7:04 am
john.richter (1/13/2011)
Steve Jones - SSC Editor (1/12/2011)
Not...
January 13, 2011 at 7:01 am
Are you just creating a clustered index, or are you creating a clustered-unique index? Or by "clustered index" do you mean "primary key"? The clustered index can have...
January 13, 2011 at 6:43 am
Reji PR (1/11/2011)
If My understanding is correct, you need to set the arguments in the where clause based on the...
January 13, 2011 at 6:37 am
Viewing 15 posts - 5,326 through 5,340 (of 14,953 total)