Viewing 15 posts - 3,721 through 3,735 (of 7,503 total)
What's your backup frequency ?
You may experience the result of IO shortage.....
If you have online index rebuilds, tempdb will be used !
This may cause read/write contention with tempdb file(s)...
May 13, 2009 at 7:13 am
In fact a snapshot db is created without any entries !
Data is only inserted if rows are modified in the originating database (or objects altered/dropped).
That's why a snapshot db only...
May 12, 2009 at 11:47 pm
No.
A shapshot only preserves the state at the moment it has been taken !
So it only contains a single truth about a row at a certain point in time.
Keep in...
May 12, 2009 at 11:31 am
so that would be a rbar promotion ?
I know I'm way off, but in would a pivot help to determine the set ?
IF object_id('v_SSC_Assignment_InstructorCorse') IS NOT NULL
...
May 12, 2009 at 8:09 am
With a system as yours that is apparently vulnerable to fast degradation of statistics, and that doesn't perform well after the daily updatestats I would try to disable the daily...
May 11, 2009 at 2:23 pm
just remove @ from your connectionstring and you should be ok
If sqlbrowser service is running, you don't need to supply the port number (,13...)
Then you can remove that...
May 11, 2009 at 7:51 am
Have a look at :
- "Moving Large Table to Different File Group" http://www.sqlservercentral.com/articles/Administration/64275/
- "Moving Tables and Indexes to Filegroups En Masse " http://www.sqlservercentral.com/articles/Files+and+Filegroups/65538/
- "Move a table between filegroups" http://www.sqlservercentral.com/scripts/Miscellaneous/31526/
May 8, 2009 at 7:36 am
Such operation will be noticeble for ongoing operations !
Can you afford downtime ?
If yes,
Can you move the whole db file, or do you want just to...
May 8, 2009 at 6:40 am
I think in this case it is worth the try.
May 8, 2009 at 12:20 am
Did you perform datapurity checks after you restored the db ?
May 7, 2009 at 4:11 pm
mikesigsworth (5/7/2009)
May 7, 2009 at 3:22 pm
As shown in my previous reply a password encrypted master key can only be modified using the path of:
OPEN MASTER KEY DECRYPTION BY PASSWORD = 'TestEncryption31' ; -- old...
May 7, 2009 at 3:16 pm
So this proves you actually have NULL s in the designated date column !
Since you didn't order the first time, these rows will have been some where random in the...
May 7, 2009 at 2:56 pm
Your variables content must match the predicates conventions.
In this case the conventions for Like.
Did you test this :
SET @Value = N'%My[_]Matching[_]Value%';
May 7, 2009 at 2:53 pm
skjoldtc (5/7/2009)
May 7, 2009 at 7:14 am
Viewing 15 posts - 3,721 through 3,735 (of 7,503 total)