Viewing 15 posts - 1 through 15 (of 15 total)
Yes, there is a flag in the registry - I had the same problem couple of times.
The following article describes the fix:
June 23, 2004 at 3:18 pm
In order to get rid of "Open Objects" warnings, you can execute the sp_configure system
procedure with the following syntax:
exec sp_configure "open objects", <new value>
RECONFIGURE, shut down and restart SQL...
June 21, 2004 at 11:31 am
Greg, you can use sqlredis using no parameters in order to install the SQL Server connectivity components. Specify only the /C /T:"temporary_working_folder_path" switches if you want to see what modules...
June 14, 2004 at 10:35 am
Just wondering - could it be that you are trying to restore an old SQL 6.5 backup?
SQL Server Microsoft Tape Format was first introduced in SQL 7, so backups...
June 10, 2004 at 1:51 pm
Check those links:
http://www.xpcrypt.com/xpho/install.htm
http://www.activecrypt.com/sql-server-column-encryption.html
June 10, 2004 at 12:38 pm
SQLREDIS.EXE located in the MSEQ\x86\ODBC folder contains MDAC version 2.6. You can either run the exe from there or get it from http://msdn.microsoft.com/library/default.asp?url=/downloads/list/dataaccess.asp.
Please note that...
June 10, 2004 at 12:25 pm
It might be that your tcp\ip connections become orphaned or the KeepAliveInterval(OS level) is not set.
Check the following article:
http://support.microsoft.com/default.aspx?scid=kb;EN-US;Q137983
June 4, 2004 at 8:36 am
We just finished a major SQL 6.5 >> SQL 2000 in-place upgrade - about 80 production servers. Didn't have too many issues except for the following ones you might find...
June 3, 2004 at 9:46 pm
Don't think that "DATEFIRST" should matter in this case. As the @@DATEFIRST value is changed, only the weekday numbers are changed as well. It doesn’t affect...
June 2, 2004 at 12:08 pm
Pwdencrypt and pwdcompare functions are not supported by Microsoft and are totally undocumented. Therefore, the encryption and hashing algorithms used are subject to change at any time, and you will...
May 20, 2004 at 10:55 am
Check the following article
http://support.microsoft.com/default.aspx?scid=kb;EN-US;Q274463
May 17, 2004 at 12:57 pm
Where are you installing your data files?
There might a problem with NTFS file permissions if you are placing master on a...
May 17, 2004 at 10:22 am
You can use the following script
use master
go
sp_configure 'allow updates', 1
reconfigure with override
go
update sysdatabases
set status = 256
where name = 'DBname'
go
sp_configure 'allow updates', 0
reconfigure
go
checkpoint
go
shutdown
go
To bring the db out of suspect mode:
May 10, 2004 at 3:38 pm
Viewing 15 posts - 1 through 15 (of 15 total)