Forum Replies Created

Viewing 7 posts - 1 through 7 (of 7 total)

  • RE: Move tempdb log file without restart

    It looks like EMPTYFILE argument of DBCC SHRINKFILE will help me. But I still need to figure out how?

    Bottomline ... I have move the log file(s) of tempdb to a...

  • RE: How to identify GROUPS in database roles

    Nevermind. I got it.

    I am now using sp_helpuser, so that I can get both database user and login.

    After that I can use isntgroup column in sysusers table to find which...

  • RE: Get list of DBO''''S in database

    I am using sp_helprolemember 'db_owner'  to get the list of DBO role members in a given database.

    Some of these members in DBO role are Domain groups or local groups. How...

  • RE: Edit DTS Packages with non admin useres?

    Hi

    We had to implement this just couple of months back because of SOX. As per SOX requirement we had to take away sysadmin rights from many users.

    But some of...

  • RE: Table Design

    Try this out and you will get the what you want:

    CREATE TABLE [dbo].[City] (

     [CityID] [int] IDENTITY (1, 1) PRIMARY KEY,

     [CityName] [varchar] (50),

     [TitleID] [int] NOT NULL

    ) ON [PRIMARY]

    GO

    CREATE TABLE [dbo].[Title]...

  • RE: How to secure database

    Securing objects has to be done through maintaining proper previliges on the objects.

    We can secure a server in multiple ways and keep the objects inaccessible to unauthorized people.

    But when the...

  • RE: Question of the Day for 21 Dec 2005

    Its hard to find what's wrong with the query, without seeing the query

    But I have tried to narrow it down with my best...

Viewing 7 posts - 1 through 7 (of 7 total)