Viewing 15 posts - 3,586 through 3,600 (of 7,496 total)
- 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
What service pack is your sqlinstance on ?
Select Serverproperty( 'ComputerNamePhysicalNetBIOS' ) as ComputerNamePhysicalNetBIOS
, Serverproperty( 'Edition' ) as Edition
, Serverproperty( 'InstanceName' ) as InstanceName
, Serverproperty(...
July 6, 2009 at 2:54 am
Did you change the SAC connection from localhost to the logical server name of your sqlserver instance ?
e.g. mysqlserver\myinstance you should connect to mysqlserver.
July 5, 2009 at 11:49 pm
Why do you want the dependancy of both pk columns?
- an identity column auto increments its value by the increment value. If not tampered with that definition, it will generate...
July 5, 2009 at 10:50 am
did you try this in SSMS:
EXEC sp_configure 'remote admin connections', 1;
GO
RECONFIGURE;
GO
July 5, 2009 at 3:04 am
With clustering stuff, many thing must be managed using cluster administrator!
What are you looking for ? (With regards to instance management)
July 4, 2009 at 1:59 am
GilaMonster (7/2/2009)
ALZDBA (7/2/2009)
Keep prod and dev data on separate instances !Keep prod and dev on different servers!
Whenever possible indeed !
OP stated
..dev server is gng to decomission soon ..
I...
July 3, 2009 at 8:00 am
Viewing 15 posts - 3,586 through 3,600 (of 7,496 total)