Viewing 15 posts - 856 through 870 (of 1,365 total)
Anything suspicious in cluster log file?
MJ
December 22, 2008 at 2:18 pm
Please specify the monitor server edition and version.
MJ
December 22, 2008 at 2:08 pm
Run profiler and see exactly where in job the code is stalling.
MJ
December 21, 2008 at 2:34 pm
What message do you get when you execute "Use DBNAME" in management studio?
MJ
December 20, 2008 at 5:34 pm
In my case this worked:http://support.microsoft.com/kb/942861
Risk is involved here as registry needs to be touched upon.
MJ
December 20, 2008 at 5:30 pm
In 2005 if you have default trace running in background run the below mentioned code with the log file location as per your system:
SELECT
trc_evnt.name
,dflt_trc.DatabaseName
,dflt_trc.ApplicationName
,dflt_trc.TextData
,dflt_trc.FileName
,dflt_trc.LoginName
,dflt_trc.StartTime
FROM fn_trace_gettable('F:\SQL2005\MSSQL.1\MSSQL\LOG\log_313.trc', NULL) AS dflt_trc
INNER JOIN sys.trace_events...
December 20, 2008 at 5:27 pm
Give this a try:
declare @sql varchar(8000)
Declare @DB_Objects varchar(8000)
Select @DB_Objects = ' name COLLATE DATABASE_DEFAULT as [Name]
From %D%.dbo.sysusers where uid not in (16384,16385,16386,16387,16389,16390,16391,16392,16393)and sid is not null
'
Select @sql = 'SELECT DBName,Name...
December 20, 2008 at 5:23 pm
Make sure that the useid has "Log on as service" right. Rest try to start from command prompt. Also, sql server must be started at that time.
MJ
December 20, 2008 at 4:47 pm
select st.name,sc.name from
sys.all_columns sc join sys.tables st
on st.object_id=sc.object_id
order by st.name
HTH!
MJ
December 20, 2008 at 2:55 pm
I think you are running this statement in 2005 as this is 2000 forum. Also, is sql server instance started against which you are executing this query?
MJ
December 18, 2008 at 3:04 pm
Complete query:
SELECT
object_name(I.[object_id]) AS tableName
, I.[name] AS indexName
, ...
December 17, 2008 at 2:41 pm
No change in 2005 too.
Mj
December 17, 2008 at 2:15 pm
Do you have more than one sql server instance running on your machine?
MJ
December 17, 2008 at 1:34 pm
It depends on whether you have downtime or not. 1st technique requires downtime and also databases won't be avaiable on source instance once they are detached.
Backup/Restore process can do your...
December 17, 2008 at 12:26 pm
Viewing 15 posts - 856 through 870 (of 1,365 total)