Viewing 15 posts - 4,831 through 4,845 (of 8,416 total)
First things first. Run the following to see the status of the CLR hosting:
SELECT *
FROM sys.dm_clr_properties;
You will see something like the following if all is...
March 26, 2010 at 2:52 am
sql_lock (3/26/2010)
March 26, 2010 at 2:42 am
It might be. Turn intellisense off and see if it goes away?
Is it causing a problem?
March 26, 2010 at 2:37 am
Why would you use a CLR trigger here? A T-SQL trigger seems a better idea.
Or upgrade to 2008 and use Change Data Capture.
March 26, 2010 at 2:31 am
erezmor (3/24/2010)
...calling an external web service...marked as unsafe...call this sp from certain insert triggers in key tables on our PRODUCTION db
I don't want to sound harsh, but this is a...
March 26, 2010 at 2:29 am
Kingston Dhasian (3/26/2010)
SELECT ROUND( -0.6401, 0 )The above statement gives me an error saying An error occurred while executing batch. Error message is: Arithmetic Overflow. I get the error for... March 26, 2010 at 2:19 am
Quatrei.X (3/26/2010)
how do you delete a post?
You can't. Used to be able to, a long time ago, but no longer.
If you really need to remove something, edit the post,...
March 26, 2010 at 1:09 am
Quatrei.X (3/26/2010)
March 26, 2010 at 1:07 am
Thank you, Arjun.
March 26, 2010 at 1:05 am
Bhuvnesh (3/25/2010)
Paul White NZ (3/25/2010)
What do you mean here? Having an index prevents a seek???I guess optimizer will not use seek for HAVING MIN(Date).What do you think ?
I...
March 26, 2010 at 1:03 am
Hey everyone, you probably won't believe this, but the following performs pretty well too. Two milliseconds elapsed for the 151 row generating sample data. Nested recursive CTEs wrapped...
March 26, 2010 at 12:59 am
Nugby (3/25/2010)
March 25, 2010 at 10:47 pm
Just thought of a much better option than using EMPTYFILE: use the CREATE INDEX ... WITH (DROP_EXISTING = ON) ... ON {new filegroup} syntax. This will move the data...
March 25, 2010 at 10:42 pm
Viewing 15 posts - 4,831 through 4,845 (of 8,416 total)