Forum Replies Created

Viewing 15 posts - 16 through 30 (of 148 total)

  • RE: Connecting to SQL2008 DB's using ODBC

    Have you checked to see if the VIEW ANY DATABASE permision has been denied or if any other permissions you may take for granted have been denied to the particular...

    - Tim Ford, SQL Server MVPhttp://www.sqlcruise.comhttp://www.thesqlagentman.com http://www.linkedin.com/in/timothyford

  • RE: how to rectify sql server edition operating system compatibility warning messages

    Enterprise Edition SQL Server is not supported on non-server class O/S. You should be able to install the Developer Edition however, but I mention this only for a test...

    - Tim Ford, SQL Server MVPhttp://www.sqlcruise.comhttp://www.thesqlagentman.com http://www.linkedin.com/in/timothyford

  • RE: SQL Server 2005 Not Using All Available Memory After Upgrade from 2000

    I am leaning towards the fact that you simply do not need more memory to complete the workload. However to determine this you need to look at your perfmon...

    - Tim Ford, SQL Server MVPhttp://www.sqlcruise.comhttp://www.thesqlagentman.com http://www.linkedin.com/in/timothyford

  • RE: SQL Server 2005 Not Using All Available Memory After Upgrade from 2000

    Did you configure your memory in the server properties for SQL to use the full amount of RAM? You mentioned this is clustered? How many nodes and how...

    - Tim Ford, SQL Server MVPhttp://www.sqlcruise.comhttp://www.thesqlagentman.com http://www.linkedin.com/in/timothyford

  • RE: SQL Server 2005 Not Using All Available Memory After Upgrade from 2000

    A couple things to ask yourself and to check:

    If you're on the 64-bit OS platform why did you not install SQL as 64-bit?

    Did you grant the service account for SQL...

    - Tim Ford, SQL Server MVPhttp://www.sqlcruise.comhttp://www.thesqlagentman.com http://www.linkedin.com/in/timothyford

  • RE: sys.mater_files has an extra data file

    By simply altering the files in tempdb, the changes will not take effect until the services are restarted. Therefore if you deleted the invalid file via the SSMS GUI...

    - Tim Ford, SQL Server MVPhttp://www.sqlcruise.comhttp://www.thesqlagentman.com http://www.linkedin.com/in/timothyford

  • RE: Querying the duration of the latest successful SQL Agent Job step

    Believe it or not, it's actually needs to be parsed out. For example a value of 1442 translates to MM:SS.

    - Tim Ford, SQL Server MVPhttp://www.sqlcruise.comhttp://www.thesqlagentman.com http://www.linkedin.com/in/timothyford

  • RE: Querying the duration of the latest successful SQL Agent Job step

    The core table for this is msdb.dbo.sysjobhistory. You can add a great deal of information by joining to other metadata tables in msdb, but this will get you started:

    SELECT...

    - Tim Ford, SQL Server MVPhttp://www.sqlcruise.comhttp://www.thesqlagentman.com http://www.linkedin.com/in/timothyford

  • RE: How to Copy log backups to other serevr as soon as the log backup job finishes?

    We have never experienced issues in backing up over the network. If you have a reliable infrastructure the issues and risk is minimal. If risks are minimal it...

    - Tim Ford, SQL Server MVPhttp://www.sqlcruise.comhttp://www.thesqlagentman.com http://www.linkedin.com/in/timothyford

  • RE: How to Copy log backups to other serevr as soon as the log backup job finishes?

    I suggest backing up directly to the location you plan on copying the files to. Is that not an option? You should be able to backup to a...

    - Tim Ford, SQL Server MVPhttp://www.sqlcruise.comhttp://www.thesqlagentman.com http://www.linkedin.com/in/timothyford

  • RE: instance naming conventions

    Your assumptions appear to be correct. If you're being forced to use that form of naming convention suggest an underscore (_).

    - Tim Ford, SQL Server MVPhttp://www.sqlcruise.comhttp://www.thesqlagentman.com http://www.linkedin.com/in/timothyford

  • RE: Users with permission to GRANT CONNECT to other

    --This should do the trick if I understand what you're asking for:

    SELECT PRIN.[name]

    FROM sys.[server_permissions] PER

    INNER JOIN sys.[server_principals] PRIN

    ON PER.[grantee_principal_id] = PRIN.[principal_id]

    WHERE PER.[permission_name] = 'CONNECT SQL'

    AND (PER.[state] = 'G' OR...

    - Tim Ford, SQL Server MVPhttp://www.sqlcruise.comhttp://www.thesqlagentman.com http://www.linkedin.com/in/timothyford

  • RE: Looking a good Backup Plan - SQL Server 2005

    Paul, you'll want to increase the frequency of your log backups if you see growth that is abnormally large. Depending upon how many inserts, updates, and deletes you perform...

    - Tim Ford, SQL Server MVPhttp://www.sqlcruise.comhttp://www.thesqlagentman.com http://www.linkedin.com/in/timothyford

  • RE: Databases Backuping up Twice

    Is it possible you have a scheduled task on the server at the o/s level that is backing up databases. It would not show as a scheduled SQL Agent...

    - Tim Ford, SQL Server MVPhttp://www.sqlcruise.comhttp://www.thesqlagentman.com http://www.linkedin.com/in/timothyford

  • RE: Optimization/Integrity job

    If you are using the Maintenance Plans in SQL Server I also would recommend scheduling the Integrity Checks to occur before a full database backup. This aids in ensuring...

    - Tim Ford, SQL Server MVPhttp://www.sqlcruise.comhttp://www.thesqlagentman.com http://www.linkedin.com/in/timothyford

Viewing 15 posts - 16 through 30 (of 148 total)