Viewing 15 posts - 361 through 375 (of 518 total)
Jeff Moden (9/14/2010)
Derrick Smith (9/14/2010)
September 15, 2010 at 7:41 am
Tara-1044200 (9/14/2010)
I dont think we can create trigger ON DATABASE for DML acitivities by using event class.
No you can't - DML triggers are at the table level, which is why...
September 15, 2010 at 7:37 am
It's the combination of that and creating it in a transaction thats causing the issue here. SQL needs to keep the lock on those tables in case you decide to...
September 14, 2010 at 3:47 pm
ken.yannitell (9/14/2010)
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED
This will make any table look up perform the same as the Hint (With...
September 14, 2010 at 3:30 pm
How are you automating the creation of a trigger?
Couldn't you just use the same method to automate the deny of insert/update/delete?
September 14, 2010 at 3:20 pm
What is your parallelism set to? Have you tried setting MAXDOP 1, 2, 4, 8, 0 to test if results are any different? How about memory usage? Did you cap...
September 14, 2010 at 3:17 pm
How about you just deny insert/update/delete (or don't grant to begin with) permission on those tables to those users? Triggers should be a last resort.
September 14, 2010 at 3:11 pm
DHeath (9/14/2010)
September 14, 2010 at 3:09 pm
That's less than 1% difference, so no, that won't really affect it.
It sounds more like Table 2 is missing indexes or statistics. Take a look at the execution plans for...
September 14, 2010 at 3:05 pm
Try this: http://support.microsoft.com/kb/955404
September 14, 2010 at 2:45 pm
JC-3113 (9/14/2010)
yes you would think that escpecially after i have researched the issue
I am on SQL Server 2005 Developer 64-bit 9.00.4053.00 SP3
I was able to...
September 14, 2010 at 2:34 pm
No, as far as I know you cannot set up auditing this way. A central management server might be able to accomplish this, however I don't use one so I...
September 14, 2010 at 2:30 pm
You can't use a computed column value in another computed column on the same table.
You'll need to just duplicate the code for those columns, such as:
select year(regdate) as [Year],month(regdate) as...
September 14, 2010 at 2:17 pm
3 separate LUNs, each with its own partition. I usually don't create more than 1 partition per LUN.
As far as arrays, I'm not sure. I don't really have visibility into...
September 14, 2010 at 12:01 pm
Viewing 15 posts - 361 through 375 (of 518 total)