Viewing 15 posts - 721 through 735 (of 1,365 total)
Check the installation log file and se what it says.
MJ
January 28, 2009 at 3:02 pm
I think database trigger prevented the deletion/creation of hidden system database named mssqlsystemresource.
MJ
January 23, 2009 at 3:28 pm
I see few errors one of those is:
Disk space required for the installation exceeds available disk space. Property(S): DiskSpace_DlgDesc1 = The available disk space and the space required for installation...
January 22, 2009 at 7:30 pm
I think restoring back the system databases will do.
Experts please comment.
MJ
January 22, 2009 at 6:13 pm
Make use of this sample code:
Deleting records from 600 to 100 days old:-
USE MSDB
DECLARE @backup_date DATETIME
DECLARE @countback int
set @countback = 600
while @countback >= 100
BEGIN
print @countback
set @backup_date=(select dateadd (dd,...
January 22, 2009 at 5:35 pm
Its not working for me.
set @cServerName = '[ABC-1C98DDDFF87\SQL2000]'
set @cDBName = 'master'
What else do I need to set as I am logged in to this instance and still getting sql server...
January 22, 2009 at 3:20 pm
Run select @@version in ssms.
Manu
January 22, 2009 at 2:54 pm
SELECT a.* FROM OPENROWSET('SQLOLEDB',
'DRIVER={SQL Server};SERVER=ServerName;Trusted_Connection=yes;',
'SET NOCOUNT ON;SET FMTONLY OFF; exec (''dbcc sqlperf(logspace)'')') AS a
MJ
January 22, 2009 at 6:46 am
What is slow? Select statament queries with Where clause Or Inserts/Updates/Deletes? What is the index structure? Are there too many non-clustered indexes on this table(out of which some not getting...
January 21, 2009 at 3:37 pm
Why are you reindexing it daily? Are you seeing framentation in this table? You should reindex it only if fragmentation is high(>30-40) otherwise do it weekly or at a...
January 21, 2009 at 1:56 pm
I don't remember the options screen, have you checked under Advanced Options?
MJ
January 21, 2009 at 8:32 am
Check under sys.databases output whether anyone of the following holds true:
is_published
is_subscribed
is_merge_published
is_distributor
Also, I liked the below mentioned solution given by noonone at
http://www.sqlservercentral.com/Forums/Topic115333-7-1.aspx
You can restore another database backup, that don`t have...
January 21, 2009 at 8:15 am
Have you chked http://social.technet.microsoft.com/Forums/en-US/sqlce/thread/bf8efab4-fb22-4015-ac38-f894f49bbe6d/
Mj
January 21, 2009 at 8:05 am
select * from sys.system_objects
where type_desc like '%func%'
MJ
January 21, 2009 at 7:50 am
Viewing 15 posts - 721 through 735 (of 1,365 total)