Forum Replies Created

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

  • RE: How to get the permissions for a user-defined database role

    Thanks Markus for the script and the tool.

    When I ran the script and the tool for a role in my DB it just showed me the GRANT EXECUTE & GRANT...

  • RE: SQLAgentMail with Lotus Notes

    Thanks everyone.

    I used the SP mentioned in this article: How to send e-mail without using SQL Mail in SQL Server.

    I created an SP that checks sysjobhistory and sysjobs...

  • RE: How to troubleshoot: "Cannot generate SSPI Context"

    Thank you all.

    The problem was resolved by adding an SPN for the account under which the MSSQLServer service was running. Following command was used:

    setspn -A MSSQLSvc/<ServerName>.<domain>:1433  <AccountName>

    Thanks,

    RSingh

  • RE: Free Tools for the SQL Server DBA

    SQLServerToolKit is an amazing tool. Toad for SQL Server is also a useful tool. Thanks a million David for sharing these tools.

    RSingh

  • RE: How to troubleshoot "Cannot generate SSPI Context" in SQL Server 2005

    Sorry Steve.

    I posted in SQL 2000 admin forum first. Upon realizing that this is a thread related to SQL Server 2005, i posted here.

    Thanks for the reply in the other...

  • RE: When is the log truncated?

    Thanks everyone.

    Cary - You are also absolutely right. The log backups of the database had not been taken since long. A subsequent log backup after the first one was quite...

  • RE: When is the log truncated?

    Thanks to everyone who replied.

    Actually I was mislead by the following statement:

    "Full Backup

    The full backup does just that – it backs up all the data in the database. Every table,...

  • RE: restore database

    Dear Sanjay,

    .gz is a zip format and thus will not be recognised by SQL Server. You will have to first unzip the file using gzip or gunzip utilities and get...

  • RE: Getting database accessed from profiler

    You can filter your results by DatabaseID or DatabaseName.

    I prefer filtering by DatabaseID (DatabaseID equals <YourDatabaseID> rather than DatabaseName since I have noticed that sometimes SQL Server doesn't filter by...

  • RE: The 400,000 Member Milestone

    Congratulations on achieving the 400k mark.

    I wish and hope that SSC will be reaching 500k mark sooner than it reached 400k from 300k.

    Kudos to the hard work put in by...

  • RE: Problem with removing FileGroups

    Thanks Lowell for the reply.

    When I ran your query it returned 0 rows.

    But I modified it a little and it helped me:

    select sysobjects.name as TableName,

          s.groupname as Data_located_on_filegroup

       from...

  • RE: AWE on 64-bit machine

    YES.

    Since you are using 32-bit SQL Server you still need to enable AWE. You can do away with enabling AWE only if you are using 64-bit SQL Server.

    On Windows Server...

  • RE: @@Servername returns NULL

    Thanks Yelena for the reply.

    But i forgot to mention that i had alread tried the following:

    a) sp_dropserver
    b) sp_addserver 'DB02', local
    c) restart sql server
     
    but this also didn't help
     
    Regards,
    Rsingh
  • RE: Speeding up deletes on a large table

    Thanks everyone for the reply.

    Here is some additional information in this scenario:

    1. The recovery model of the DB is set to SIMPLE.

    2. The table in question doesn't have any Primary...

  • RE: Speeding up deletes on a large table

    Mike,

    Thanks for the reply.

    The count of rows for >= '20050501' is again 75 million.

    Wouldn't it be again time consuming to Select so many rows into another table and then creating...

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