Viewing 15 posts - 1,441 through 1,455 (of 2,387 total)
You may try OSQL -L.
You also can use SQL Server 2000 SQL Scan Tool (SQL Scan) to identify all installed instances.
July 21, 2003 at 2:40 pm
Did you use same authentication mode to register SQL Server in EM in both servers?
July 21, 2003 at 2:33 pm
You need to have a look to view sysjobs_view.
CREATE VIEW sysjobs_view
AS
SELECT *
FROM msdb.dbo.sysjobs
WHERE (owner_sid = SUSER_SID())
OR (ISNULL(IS_SRVROLEMEMBER(N'sysadmin'), 0) = 1)
OR (ISNULL(IS_MEMBER(N'TargetServersRole'), 0) = 1)
It...
July 21, 2003 at 1:18 pm
Check your machine application/system logs for any related errors.
Do you mind post the result of srvinfo \\yourmachinename?
July 21, 2003 at 12:50 pm
Do you have any kind of backup application running in this server to try to backup database files? What about anti-virus application?
July 21, 2003 at 12:16 pm
If you are in clustered SQL Server installation, you may found SQL Server license mode is by per seat instead of per processor even though you did choose the per...
July 21, 2003 at 11:58 am
quote:
I know there was a change in TargetServerRole as of SP3.
Brain is right. The...
July 21, 2003 at 11:52 am
I created user TEST1 who created and owned job JOB1. I created another user TEST2 and granted it to access MSDB and added it to the member of TargetServerRole. Use...
July 21, 2003 at 10:02 am
quote:
I've got one SPID (from any individual database on the server) that connects to the tempdb and creates up to 100...
July 21, 2003 at 8:37 am
In addition of performance, You also have to face the large database maintenance and database recovery issues.
July 19, 2003 at 5:41 pm
Grant those users to access MSDB and add them to the member of TargetServerRole.
July 18, 2003 at 1:27 pm
Go back to Access --> Tools --> Add-Ins --> Linked Table Manager --> Select All --> Click to refresh the link between linked table and SQL Server.
July 18, 2003 at 12:27 pm
OK. Go to Access --> open any one of tables in design view --> click properities from toolbar to find out the ODBC name used for linked table to SQL...
July 18, 2003 at 10:02 am
Viewing 15 posts - 1,441 through 1,455 (of 2,387 total)