Forum Replies Created

Viewing 15 posts - 106 through 120 (of 351 total)

  • RE: Create new roles

    Create Roles with specific group names and assign schema, tables, views, store procs to those roles as needed access to.

    [font="Tahoma"]
    --SQLFRNDZ[/url]
    [/font]

  • RE: List of Database Users with Database Roles

    --#### LOGINS,USERS,ROLES (LUR) SCRIPT ####

    --#### SCRIPT TESTED IN SQL SERVER 2000,2005,2008 AND 2008R2####

    SET ANSI_NULLS ON

    GO

    SET QUOTED_IDENTIFIER ON

    GO

    SET ANSI_PADDING ON

    GO

    -- CREATING A TEMP TABLE TO LOAD WITH DATABASE ROLES

    CREATE TABLE [TEMPDB].[DBO].[DB_ROLES](...

    [font="Tahoma"]
    --SQLFRNDZ[/url]
    [/font]

  • RE: How To Write An Interview Winning Resume

    That is an excellent post !

    Could you attach a sample resume to the article as you described?

    Thanks

    [font="Tahoma"]
    --SQLFRNDZ[/url]
    [/font]

  • RE: Need help finding script to truncate log in SQL Server 2008

    Ther must be an open transaction that is filling your log, DBCC opentran.

    [font="Tahoma"]
    --SQLFRNDZ[/url]
    [/font]

  • RE: Blocked and Blocking process Help

    use sp_who2

    [font="Tahoma"]
    --SQLFRNDZ[/url]
    [/font]

  • RE: Restore Failed

    Sorry, Verified corruption on Litespeed Backups

    But learned new thing that Lite speed backups will be shown as corrup[ted when checked with verify native backup.

    [font="Tahoma"]
    --SQLFRNDZ[/url]
    [/font]

  • RE: Activity Monitor - Category Does Not Exist

    If you dint fix your error.

    Still you can get the activity monitor info

    check this: Activity Monitor Script- Head Blocker[/url]

    Works like charm !

    [font="Tahoma"]
    --SQLFRNDZ[/url]
    [/font]

  • RE: Only System Administrator can specify WITH

    Give the User

    alter trace permissions

    LOG

    Logs the error in the error log and the application log for the instance of the Microsoft SQL Server Database Engine. Errors logged...

    [font="Tahoma"]
    --SQLFRNDZ[/url]
    [/font]

  • RE: User access to Activity Monitor

    You give this script to them to execute and get the detailed infio they required

    http://www.sqlservercentral.com/scripts/Head+Blocker/75366/

    [font="Tahoma"]
    --SQLFRNDZ[/url]
    [/font]

  • RE: Database Size increasing

    sql_novice_2007 (9/29/2011)


    It shows 150 MB free space out of 3.1 GB. Can I create any free space on it?

    In fact I ran into space issue. Thats why I wanted to...

    [font="Tahoma"]
    --SQLFRNDZ[/url]
    [/font]

  • RE: Database Size increasing

    sql_novice_2007 (9/29/2011)


    When I click the properties of the database I see only 100MB free out of 3.2 GB.

    Still Can shrink the mdf file?

    Thanks.

    Try executing to find and verify you...

    [font="Tahoma"]
    --SQLFRNDZ[/url]
    [/font]

  • RE: Database Size increasing

    Shrink it to release the unused space........

    [font="Tahoma"]
    --SQLFRNDZ[/url]
    [/font]

  • RE: How to add sys table to diagram ?

    As views are not physical tables as they are just the query result sets from multiple tables they don't let you to make relationships.

    Try making that view to indexed view...

    [font="Tahoma"]
    --SQLFRNDZ[/url]
    [/font]

  • RE: Database will not be dropped

    Is you are the db owner ? or Sys admin ?

    Another work aroundis here

    1.

    If you have to delete mdf and ldf , in first it has to...

    [font="Tahoma"]
    --SQLFRNDZ[/url]
    [/font]

  • RE: Connection went to suspended in sql server 2005

    Status of SPID,

    Suspended- Waiting on some resources or thread or on another query to complete.

    Use this query to find what it is waiting on along with wait_type.[/url]

    [font="Tahoma"]
    --SQLFRNDZ[/url]
    [/font]

Viewing 15 posts - 106 through 120 (of 351 total)