Viewing 15 posts - 21,286 through 21,300 (of 22,219 total)
Not really.
You could restore a previous backup of the database to a different location and retrieve it that way.
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
January 11, 2008 at 6:30 am
Removing them and readding them will work. You could just run:
DISABLE TRIGGER ALL ON dbo.TableName
Just remember to run:
ENABLE TRIGGER ALL ON dbo.TableName
Otherwise, whatever the trigger does for you... it's not...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
January 11, 2008 at 5:39 am
Depending on the data type & how you write the query, the MAX should work too. I've just found that the TOP... ORDER BY works better especially with a clustered...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
January 10, 2008 at 1:42 pm
I think that your SQL Server instance is running under the local service account and does not have access to the network. You either have to expose the network to...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
January 10, 2008 at 1:06 pm
Below my post is a button that reads "Add Topic"
Click that, fill in the blanks and more people will see the question.
I take it my answer wasn't helpful.
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
January 10, 2008 at 12:49 pm
I don't know if I'd place a hard value on it like 1mb, but I suspect he meant that since table variables have no statistics, they're quick to build &...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
January 10, 2008 at 12:45 pm
Yeah, that list seems a bit light. I'd ball park it. If you're close, go for it. Unless it specifically states something like "Extensive expertise with MDX" or some other...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
January 10, 2008 at 12:40 pm
sg2000 (1/10/2008)
SELECT dbo.TabA.Col1, dbo.TabB.Col2
FROM dbo.TabA LEFT OUTER JOIN
dbo.TabB ON dbo.TabB.ForgnKey = dbo.TabA.PrimKey
In this case, I got all of TabB col2 on the View...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
January 10, 2008 at 12:35 pm
You must have a trigger in place. Simply running that query as written should do what you want. Why you need to keep two copies of the same data I...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
January 10, 2008 at 12:25 pm
Oh, and if you want more responses, post your question as a new topic. You'll get a lot more people reading it that way and you'll probably get better responses.
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
January 10, 2008 at 12:05 pm
If I understand the question, it sure sounds like a similar issue. If your SQL Server is running under the local System account, it might not have access to the...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
January 10, 2008 at 12:04 pm
Echoing Gail, I'd like to get my 2008 skills to an adequate level. Also, I intend to try to present at PASS this year. Other than that, learn, improve, grow...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
January 10, 2008 at 7:07 am
We ran into a problem recenlty where an app was leaving open connections and open transactions that were filling tempdb. You might look for old open connections, especially since it's...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
January 10, 2008 at 7:00 am
Don't try to compare what you know to Itzik. I've taken his advanced tsql class twice, read tons of his articles and his books and gone to his lectures at...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
January 10, 2008 at 6:20 am
Hey Sandy,
We are actually, for the moment, not looking, but only because we took on a consultant after spending a year trying to find a senior level dba. It's...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
January 10, 2008 at 6:04 am
Viewing 15 posts - 21,286 through 21,300 (of 22,219 total)