Viewing 15 posts - 5,566 through 5,580 (of 7,505 total)
I think I got this from SSC, but I cannot find the link:
-- Written by: Greg Larsen Date: 06/15/2002
-- All rights reserved Copyright 2002
set nocount on
DECLARE @I INT
DECLARE @C CHAR(8)
SET...
October 9, 2007 at 10:00 am
- grant the login the needed rights (tables, views, sprocs,fn,...)
- sp_changedbowner 'sa',true
October 9, 2007 at 9:56 am
thank you for the feedback.
Glad to see setspn solved your issue.
October 9, 2007 at 12:12 am
Did someone rename a service account ???
In that case, drop the login from sqlserver and add it again.
Sqlserver stores Windows account by its Windows "guid", so dropping an account and...
October 8, 2007 at 2:50 am
which network protocols are opened for connections ?
October 8, 2007 at 2:26 am
keep in mind if you start an instance manualy you need to start:
net start mssql$instancename
October 8, 2007 at 2:09 am
- Doublecheck the cluster account
- bring all resources online except for the sql-instance
- Then use 'net start yourinstance', and check the account has login rights (NO sysadmin auth needed !)
-...
October 8, 2007 at 12:40 am
Normaly if you want separate rows, perform separate selects or take things in your own hands(meaning you perform positioning yourself at front end)
October 8, 2007 at 12:33 am
Still I'd run SQLUpgradeAdvisor to check the db for possible issues with sql2005 compatibility and try to convice the customer to perform detailed testing with SQL2005 mode !
Keep in mind,...
October 8, 2007 at 12:11 am
- first of all you have to be sure you've got a valid backup.
maybe even create a new backup using the backup panels.
(tick "validate backup at the end of backup"...
October 7, 2007 at 11:53 pm
use a query window in management studio
Check out Restore database in BOL.
restore database yourdatabase
from disk='\\yourfirstserver_UNC\path\backupfile'
-- with move if you want to use new filepaths for mdf and ldf
Your...
October 7, 2007 at 8:46 am
how about :
select sum(case when condition1 then 1 else 0 end ) as whatevernameyouwannegiveit
, sum(case when condition2 then 1 else 0 end ) as whatevernameyouwannegiveit_theSecond
from yourobject
October 7, 2007 at 8:43 am
have a look in the cluster log as well as the sqlserver errorlog file.
(C:\WINNT\cluster\cluster.log)
October 5, 2007 at 5:05 am
all service accounts that have a relation to your sqlserver instance need at least instance level login auth.
The clusterservice account ('RTDOMAU\svc-proxy-pclust') just needs login rights to the sqlserver instance...
October 5, 2007 at 3:55 am
use yourdb;
-- Based on (class=0,object_id=27199197,column_id=0,referenced_major_id=11199140
select object_name( 11199140 ) as ToBeRevised
, object_name( 27199197 ) as ToBeRevisedToo
October 4, 2007 at 2:37 am
Viewing 15 posts - 5,566 through 5,580 (of 7,505 total)