Viewing 15 posts - 166 through 180 (of 2,386 total)
Change the registry LoginMode to 2 will set SQL Server to mixed authentication mode. If you are lucky, the login "BUILTIN\Administrators" is stil there and you can then login with...
December 3, 2004 at 8:30 am
Check KB810185 and hotfix build number is 780.
You can install security fix ms03-031 which includes 780 fix and bring SQL Server build number to 818. Read KB815495.
December 3, 2004 at 8:24 am
December 3, 2004 at 8:14 am
Sure you will.
Move everything to node 2
Evict the node 1
Reinstall OS on node 1
Re-join node 1 to node 2
December 2, 2004 at 2:00 pm
Drop the database HEALTH_DEV and restore production database backup into it with 'move' parameter. For example,
RESTORE DATABASE TestDB
FROM DISK = 'c:\Northwind.bak'
WITH MOVE 'Northwind' TO 'c:\test\testdb.mdf',
MOVE 'Northwind_log' TO...
December 2, 2004 at 1:21 pm
select @@SERVERNAME
or
From control panel --> service, you will see named instance server like MSSQL$ABC and default instance like MSSQLSERVER.
December 2, 2004 at 1:15 pm
The 64 Bit CD has sp3 builtin. What you need to do is to install security/hot fixes if you need them.
December 2, 2004 at 8:32 am
Try to educate them even though it is not that easy.
December 2, 2004 at 8:29 am
With 13Gb databases, I agreed with Steve's and It doesn't look like memory leak.
December 2, 2004 at 8:28 am
Try update statictics using "UPDATE STATISTICS" with fullscan option.
Do both tables have same number of records?
December 1, 2004 at 12:04 pm
As long as there are either primary or unique constraint defined in specific columns, you will not be able to insert duplicate data in these columns.
Turn on "ignore_dup_key" controls what...
December 1, 2004 at 11:57 am
How large is your database? How many databases in same SQL Server instance and what are the total size of databases?
What is SQL Server service pack level? It could be...
December 1, 2004 at 11:42 am
Viewing 15 posts - 166 through 180 (of 2,386 total)