Viewing 15 posts - 3,586 through 3,600 (of 7,503 total)
- that would be a table with +- 4,000,000,000 rows .... nice
- double check you have an index on that identity column
- Make sure you use the propper technique to...
July 14, 2009 at 6:59 am
set identity_insert is at session level !
So it will only be active with your session for your session !
Why are you trying to fill the gaps ?
Are you reaching the...
July 14, 2009 at 4:50 am
for sql2000 the current service pack is sp4. (and at least sp2 is required with win 2003).
for sql2005 the current service pack is sp3.
July 14, 2009 at 4:44 am
you could generate your drop statements using this query
Select *
from sysobjects
where xtype = 'u'
and category = 0 --(in sql2005 that would become is_ms_shipped = 0)
order by name
Doublecheck you...
July 14, 2009 at 3:28 am
isabel (7/13/2009)
Now I have problem with performing my regular restore...
July 14, 2009 at 12:11 am
With partitioned objects, I would avoid nonaligned indexes !
(because it may narrow down features and options to perform tasks.)
Unless you can prove performance is better with a nonaligned index to...
July 13, 2009 at 5:48 am
- With aligned indexes, sql will take the most advantage of the mechanisme when querying partitioned objects. (because the indexes will basically have the same algorithm applied internally, so in...
July 13, 2009 at 3:43 am
Just some quotes out of the field :
- don't implement DRI, because that will only slow you down !
(Your application will have control anyway)
- Remove DRI, this way...
July 11, 2009 at 2:14 pm
What extra info is given with your error number ?
I suggest to use the "regular" restore scenario.
Create a backup of the original db using
backup database xyz to disk=c:\temp\mybackup.bak' with...
July 10, 2009 at 1:40 am
There is a nice overview of features at MSDN http://msdn.microsoft.com/en-us/library/ms365247.aspx
July 10, 2009 at 1:32 am
this is one reason why we script all our jobs on a weekly basis :Whistling:
What you could do is : ( ON A test SERVER IF YOU CAN ! )
-...
July 8, 2009 at 8:18 am
(11 row(s) affected) (94 row(s) affected) (8 row(s) affected) (94 row(s) affected)
Msg 7726, Level 16, State 1, Line 38 Partition column 'RgValue' has data type varchar(36) which is different...
July 7, 2009 at 7:14 am
Just another thought: You are at the console, or are using a remote desktop solution to run SAC, right ?
We now only have SP3 instances with sql2005 and are not...
July 6, 2009 at 7:31 am
Try this:
SET @bcpCommand = 'bcp " select ' + @CTX_TRAILER +' " queryout "'
Why aren't you using the T-SQL "Backup database" command with a SQLCMD ?
July 6, 2009 at 5:34 am
Oh, you should !
Why ?
- bugs have been cleaned up
- new features have been added (SSB, logon triggers,..)
- performance optimisations
- SSMS menu items have been shifted around (SP2) :sick:...
July 6, 2009 at 4:42 am
Viewing 15 posts - 3,586 through 3,600 (of 7,503 total)