Viewing 15 posts - 7,336 through 7,350 (of 7,636 total)
On second thought, maybe you should just brung Brian along. 😉
March 26, 2008 at 9:20 pm
Marios Philippopoulos (3/24/2008)
So at the moment I'm stuck with a less than ideal scenario, and I want to try the Kerberos-auth option...
Good luck. Make sure that you've got some...
March 26, 2008 at 9:04 pm
David Naples (3/25/2008)
You're right. If the SET RECURSIVE_TRIGGERS ON option has been set, then it will...
Does anyone run with RECURSIVE_TRIGGERS on? It just seems like an insane setting?
March 26, 2008 at 8:18 pm
Actually, I find that including CreateDate, CreatedBy, UpdateDate and UpdateBy columns on the table give me the most bang for the buck by far. More than enough information to...
March 26, 2008 at 8:15 pm
This works also and has the advantage of being portable to many of database environments:
[font="Courier New"]Select Table_Schema, Table_Name , Column_Name, DATA_TYPE
, Coalesce(Character_Maximum_Length, Numeric_Precision) as [Size]
From INFORMATION_SCHEMA.COLUMNS C
Where...
March 26, 2008 at 7:53 pm
sunshine (3/25/2008)
OLE DB provider "SQLNCLI" for linked server "ServerName" returned message "Communication link failure".
Msg 10054, Level...
March 26, 2008 at 12:42 am
Jez (3/25/2008)
What's the point of having an ID column on a fact table?
It can facilitate the ETL process.
March 26, 2008 at 12:32 am
Chirag (3/25/2008)
March 26, 2008 at 12:19 am
To start, what are you trying to do?
Here is a description of how to get better responses to your questions: http://www.sqlservercentral.com/articles/Best+Practices/61537/
March 25, 2008 at 11:39 pm
With an after update trigger on the table, something like this:
create trigger trgFubar_UPD on Fubar AFTER Update
AS
Update Fubar
Set UPD_DATE = Getdate()
Where Fubar.PK = inserted.PK
March 24, 2008 at 9:14 pm
Two things that are likely to work:
1) put a clustered index on SendOrder
2) Put a covering index on the table to cover (col0, col1, col2, col3, col4, SendOrder, col10)
March 24, 2008 at 8:26 pm
I don't know any tricks to get periodic query refreshing inside SSMS, I always write a VB.net client to do this kind of stuff.
March 24, 2008 at 5:39 pm
mobasha (3/11/2008)
thanks.do any one have a solution if i need to run this select every 2 seconds?
i have been trying but am stuck in a dead end.
Well, this does what...
March 24, 2008 at 5:34 pm
Viewing 15 posts - 7,336 through 7,350 (of 7,636 total)