Forum Replies Created

Viewing 15 posts - 1,441 through 1,455 (of 2,387 total)

  • RE: Identifying other SQL Server Machines on Network.

    You may try OSQL -L.

    You also can use SQL Server 2000 SQL Scan Tool (SQL Scan) to identify all installed instances.

  • RE: Linked Servers and Active/Passive Cluster

    Did you use same authentication mode to register SQL Server in EM in both servers?

  • RE: Managing Security for Jobs

    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...

  • RE: Suspect Database Issue

    Check your machine application/system logs for any related errors.

    Do you mind post the result of srvinfo \\yourmachinename?

  • RE: Suspect Database Issue

    Do you have any kind of backup application running in this server to try to backup database files? What about anti-virus application?

  • RE: QOD 7/21/2003

    Set the value to 2.

  • RE: QOD 7/21/2003

    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...

  • RE: Managing Security for Jobs

    quote:


    I know there was a change in TargetServerRole as of SP3.


    Brain is right. The...

  • RE: Managing Security for Jobs

    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...

  • RE: Tempdb giving up

    quote:


    I've got one SPID (from any individual database on the server) that connects to the tempdb and creates up to 100...

  • RE: Managing Security for Jobs

    Are you sure?

  • RE: one terabyte of data

    In addition of performance, You also have to face the large database maintenance and database recovery issues.

  • RE: Managing Security for Jobs

    Grant those users to access MSDB and add them to the member of TargetServerRole.

  • RE: sql error 4060

    Go back to Access --> Tools --> Add-Ins --> Linked Table Manager --> Select All --> Click to refresh the link between linked table and SQL Server.

  • RE: sql error 4060

    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...

Viewing 15 posts - 1,441 through 1,455 (of 2,387 total)