Viewing 15 posts - 3,601 through 3,615 (of 7,503 total)
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
That is strange indeed.
Double check if you are trying to move the correct db-files. (they can have any name with no "link" to the db itself)
Check if there are still...
July 3, 2009 at 12:51 am
I'm totally with Lynn here :w00t:
One other thought of the day:
Whay are you defining the clustering index on a 3-column ix ?
- Are those columns always used (all 3...
July 2, 2009 at 12:42 pm
I'm with PaulB's suggestion !
Keep prod and dev data on separate instances !
July 2, 2009 at 12:31 pm
it may need some time to actually take it offline.
It will no longer accept new connections/commands for that db.
But it may need to complete the offload, taking some time.
July 2, 2009 at 12:28 pm
Maybe just create a view (on the remote server) and query that.
Test it and see what the effects are.
July 2, 2009 at 12:45 am
Marcus Wilkinson (6/30/2009)
All my jobs todate have been owned by the same service account that has local admin rights.
Ok, to comfirm, now I'm using a proxy and a different...
July 1, 2009 at 4:52 am
hi_abhay78 (6/30/2009)
July 1, 2009 at 4:47 am
get rid of the linked server !
Why: query stability !
Keep in mind if sqlserver cannot find a "by default" good plan, it may pull over all data of the...
June 30, 2009 at 12:38 pm
This is actually thé weak spot of SQLAgent. :crying:
What I do is create a SQL user account, make that account jobowner of the jobs non-sysadmins are wanting to manage.
Also add...
June 30, 2009 at 12:32 pm
Viewing 15 posts - 3,601 through 3,615 (of 7,503 total)