Forum Replies Created

Viewing 15 posts - 886 through 900 (of 964 total)

  • RE: sql server 2000 backup/authentication to network share - access denied os error 5

    By default the agent job runs under the account that created the job, not the agent account. If you go into the properties of the job, does it show the...

  • RE: DB Login for SQL 2000 Server

    Sure. Run this to set the security to mixed mode:

    USE [master]

    GO

    EXEC xp_instance_regwrite N'HKEY_LOCAL_MACHINE', N'Software\Microsoft\MSSQLServer\MSSQLServer', N'LoginMode', REG_DWORD, 2

    GO

    You can then run this to verify what mode the security is set at:

    EXEC...

  • RE: DB Login for SQL 2000 Server

    Sorry, I hit a button on accident and my first post went early.

    Open up Enterprise Manager

    Navigate to the instance that you are troubleshooting

    Right-click the instance name and go to Properties

    Click...

  • RE: DB Login for SQL 2000 Server

    Open up Enterprise Manager

    Navigate to the instance that you are troubleshooting

    Right-click the instance name and go to Properties

    Click the Security tab

    In the Authentication section, ensure that "SQL"

  • RE: Capturing query texts used by an application

    Another option is if the application is using SSRS to display the reports, then you should be able to see the query used in the rdl file. There will be...

  • RE: Replication Error - Command Text

    Is this merge replication? I have seen a similar error in SQL 2000 and we are usually able to restart the replication agent and it comes up and the transactions...

  • RE: Automated Script/Job to monitor disk space and server server service

    There is not a built-in Windows command that will allow you to send an e-mail. Not automatically anyway. What you could do though is if you are running a command...

  • RE: How to determine SQLAgent Job Name from Activity Monitor?

    In the Jobs tab of Enterprise Manager or the Job Activity Monitor of SSMS, what jobs does it show actively running at the time you were experiencing the high CPU...

  • RE: Tempdb CPUTime

    Does your machine host any scripts that could have been running at that time? If it happens again can you check in Activity Monitor the user logged against that activity?...

  • RE: How to hide owner name in object explorer ?

    I do not believe their is a way in SQL 2005/2008 to turn it off, but I could be wrong. Is having the object owner causing a problem?

  • RE: Tempdb CPUTime

    Are you sure it is the database server acting slowly and not the application or OS hosting the app itself? You can run a profile trace to find out what's...

  • RE: Service Pack

    The installer for the sp tells you what files need to be closed in order to prevent a reboot from being needed. However, from what I remember, SQL services do...

  • RE: Large Number of SQL Server Agent Jobs

    I have not heard of a set limit for the number of jobs that an instance can have or run. I would imagine the any limit you hit will more...

  • RE: SQL 2000 backup unable to see local drives

    That sounds strange. Can you manually type in the path to the location on the SAN where you want to backup the databases to?

    Does the account you're creating the maint...

  • RE: DB Login for SQL 2000 Server

    Just remember that if you are adding a SQL login instead of a Windows login, the database instance needs to be in Mixed Mode security.

Viewing 15 posts - 886 through 900 (of 964 total)