Viewing 15 posts - 42,526 through 42,540 (of 49,571 total)
Select count(*) from sys.tables
December 8, 2008 at 4:14 am
Please don't type in all caps. It's the online equivalent of shouting at someone.
From what I can see from the exec plan, you have no indexes at all on a...
December 8, 2008 at 4:08 am
Yup, that's fine.
Were you trying to grow the data file when those messages appeared?
December 8, 2008 at 4:06 am
mohd.imtiaz (12/8/2008)
EACH GROUPING HAS DIFFERENT COLUMN IN IT
No need to shout.
Since there's no way that the resultsets can overlap (there's a literal string that's different in each one), use UNION...
December 8, 2008 at 2:37 am
My guess is that you have autogrow enabled, one of more files grew and completely overloaded the IO system.
Either set smaller autogrow increments or (preferably) monitor the free space in...
December 8, 2008 at 2:22 am
Maybe I'm missing something, but the two queries unioned look the same.
Why do you need to union 24 results sets? There may be a better way.
December 8, 2008 at 1:39 am
leonp (12/7/2008)
but I also want to understand where Jeff and Gail were going with their queries before I draw any conclusions
What I'm trying to get at is whether the...
December 8, 2008 at 12:42 am
leonp (12/7/2008)
I guess point-in-time recovery doesn't mean a lot to our users for this DB.
Have you asked them?
I can't tell you what the best backup type is. Only...
December 7, 2008 at 10:17 am
Means either the SQL service is restarting every night, or there's a job that's cycling the error log (sp_cycleerrorlog)
Check the beginning of the new error log, either you'll see SQL's...
December 7, 2008 at 10:13 am
debjani.bedajana (12/7/2008)
Gail,And I can run the execution plan in SQL 2000 query analyzer. But it is not letting me save it.
Please post in the correct forum in the future. If...
December 7, 2008 at 9:54 am
The question you should ask yourself in this situation is the following.
"If the DB fails 10 hours after the last full/diff backup, is the loss of all changes made in...
December 7, 2008 at 1:51 am
There's very little difference, as far as the query optimiser's concerned, between a join condition and a where clause predicate.
December 6, 2008 at 1:31 pm
2) Restore all log backups up to the point of the corruption. Use the same STOPAT and NORECOVERY options on each one.
3) Immediately perform a full backup of the database...
December 6, 2008 at 1:07 pm
sqlguy (12/6/2008)
Grant Fritchey (12/6/2008)
You mentioned that there are some types of joins that could prevent index usage. Can you give me an example of this?
CAST(Table1.Col1 AS INT) = CAST(Table2.Col1...
December 6, 2008 at 1:01 pm
Derek (12/6/2008)
Could it be possible in the FROM?
No. Same problem as in the where. Join conditions must be conditions, not statements.
Just trying to parse that query shows that it won't...
December 6, 2008 at 3:05 am
Viewing 15 posts - 42,526 through 42,540 (of 49,571 total)