Viewing 15 posts - 1,816 through 1,830 (of 2,387 total)
quote:
DbId FileId CurrentSize MinimumSize UsedPages EstimatedPages------ ------ ----------- ----------- ----------- --------------
12 3 31969 31969 31968 31968
May 14, 2003 at 12:30 pm
In order to call SPs in another instance, you have to setup either linked server or remote server and use four-part names in your SPs.
You may consider to use Dynamic...
May 14, 2003 at 12:22 pm
Mmeory leak may also be caused by otehr components such as SQL mail, Full-text search, Extend Stored Procedures and OLE DB provider etc.
Do you see any error messages like...
May 14, 2003 at 12:12 pm
Use sp_attach_single_file_db only on databases that have a single log file. Do not use this stored procedure on databases that have multiple log files.
But you can use DBCC Shrinkfile with...
May 14, 2003 at 11:54 am
Check SQL Server errorlog to see whether you have an entry "SQL server listening on TCP, Shared Memory, Named Pipes.".
Select * from sysprocesses to verify which protocol your users connect...
May 14, 2003 at 11:42 am
Can you please post your stored procedure here ? Make sure you connect to the correct instance from QA and the database is in this instance to run the sp.
Edited...
May 14, 2003 at 11:34 am
Which version of SQL Server and service pack you are running?
May 14, 2003 at 9:02 am
This KB should answer your question.
http://support.microsoft.com/default.aspx?scid=kb;en-us;328383
May 14, 2003 at 7:48 am
Can you post the error messages here? Make sure all SQL Server resources are online from Cluster Administrator.
What service account SQL Server and Agent services run? Has 'BUILTIN\Administrators' login been...
May 13, 2003 at 7:34 pm
You don't have other options beside eithrt BCP or DTS in and out in SQL Server 7.0.
SQL Server 2000 allows databases having different collation under one instance.
May 13, 2003 at 7:25 pm
Try this.
delete t1
from test1 t1
join
(select userid, mlsnum, max(savedid) as sid
from test1
group by userid, mlsnum
having count(*)>1) as t2
on t1.userid = t2.userid
and t1.mlsnum =...
May 13, 2003 at 7:14 pm
Have you tried use sp_attach_single_file_db?
May 13, 2003 at 6:46 pm
quote:
It seems that when we fail over to the second node full text functionality breaks.
May 13, 2003 at 2:35 pm
Read this KB for how to remove duplicate records.
http://support.microsoft.com/default.aspx?scid=kb;en-us;139444
May 13, 2003 at 1:34 pm
Viewing 15 posts - 1,816 through 1,830 (of 2,387 total)