Viewing 15 posts - 226 through 240 (of 455 total)
ONLINE=ON means that users will be able to access your table while is being rebuilt.
With OFF this table will be locked for entire duration.
June 5, 2014 at 11:10 am
info 58414 (6/5/2014)
I think there are running to much Inserts in any System-Table and then SqlServer becomes an overflow...
Even if would be really the case, SQL Server would leave...
June 5, 2014 at 10:07 am
This is what this script is doing:
1. Drops PK (which is non-clustered).
2. Recretaes PK, non-clustered again.
3. Creates clustered index on PS.
4. Drops it.
My questions:
1. Why do you need to touch...
June 5, 2014 at 9:57 am
rangu (6/5/2014)
Do we really need a clustered index on this?
If we are talking about partitioned table, then clustered index is needed. If you create non-clustered index on PS, then...
June 5, 2014 at 9:20 am
Was your instance restarted recently?
Was it started from DOS-prompt with -x argument?
June 5, 2014 at 9:08 am
1. Create partition function. List all these dates as boundary values in this function
2. Optional. If you plan to place partitions on dedicated files/filegroups, create them. Number of FG =...
June 5, 2014 at 8:56 am
You can create articles on these 6 tables.
June 5, 2014 at 8:50 am
Congratulations! You have no missing indexes !
But if seriously, do you have "view server state" or higher permissions?
June 5, 2014 at 8:47 am
Thanks for recommendations Jack, but I have couiple of questions:
1. How I can disable sa account? There is no such menu item in SSMS. Or should I do: ALTER LOGIN...
June 4, 2014 at 12:00 pm
But you have a declaration of @sqlstatement:
DECLARE @SQLSTATEMENT VARCHAR(2000)
June 3, 2014 at 9:14 am
Diske (6/2/2014)
We have to move data from one domain to another
First, it is not completely clear what you mean "move data".
Is it one-time move of entire database(s) from one...
June 2, 2014 at 2:45 pm
What version are you using ?
If >= 2005 then use alter index ... with (online = on)
As for your question, yes it may take around 35 min to undo.
June 2, 2014 at 11:44 am
Did you have a chance to run DBCC updateusage ('db','table') ?
May 29, 2014 at 9:38 am
Also try this:
DBCC UPDATEUSAGE ('your_database_name','dead_lock_info')
May 29, 2014 at 9:19 am
Run this:
DBCC CHECKTABLE('dead_lock_info')
May 29, 2014 at 9:15 am
Viewing 15 posts - 226 through 240 (of 455 total)