Forum Replies Created

Viewing 15 posts - 76 through 90 (of 156 total)

  • RE: Db_datareader role

    Is it possible to move all the users(both windows and sql authnticated) from one database role to another using a script? In my case it would be from db_datareader to...

  • RE: Db_datareader role

    Thanks Steve.

  • RE: Db_datareader role

    Thanks Calvo.

    Is it possible to rename a custom db role?

  • RE: Deny users from viewing a column

    Ours is a datawarehousing environment. We always advice the users/teams not to do SELECT * unless needed.

    We are going to let all the teams know in advance what we...

  • RE: Deny users from viewing a column

    I'm little confused here because if I create a custom db role, I'm able to add an object under Securables but for db_datareader and db_datawriter, I'm not seeing Securables.

    I...

  • RE: Security question

    Please correct me if I'm wrong--

    I'll get an AD group created then I'll get the 3 service accounts added to the AD group. I'll give read permissions to this group...

  • RE: Server side Trace

    I used the following filter to the trace to exclude the resource database, but it didn't work. Is some wrong with it?

    set @intfilter = 32767

    exec sp_trace_setfilter @TraceID, 3, 0, 1,...

  • RE: Server side Trace

    Here it is:

    declare @on bit

    set @on = 1

    exec sp_trace_setevent @TraceID, 114, 1, @on

    exec sp_trace_setevent @TraceID, 114, 3, @on

    exec sp_trace_setevent @TraceID, 114, 8, @on

    exec sp_trace_setevent @TraceID, 114, 10, @on

    exec sp_trace_setevent @TraceID,...

  • RE: Server side Trace

    Thanks Gail.

    I ran the following query, please look at the results. On Feb 28th, there were 2865738 records for resource database. So, this is the reason I'd like to apply...

  • RE: Server side Trace

    No problem Lowell.

    One last question:

    Which one is correct?

    exec sp_trace_setfilter @TraceID, 3, 0, 1, @intfilter

    ...

  • RE: Server side Trace

    Thanks Lowell.

    Please correct me if I'm wrong--Isn't 32767 the databaseid of resource database?

  • RE: Server side Trace

    I think I found the solution but I'm not 100% sure. Could someone verify if the following filter can be applied to exclude resource db:

    set @intfilter = 32767

    exec sp_trace_setfilter @TraceID,...

  • RE: Database size

    Awesome!Thanks George. That answers my question.

  • RE: Database size

    I'll be migrating this database to a 2005 server.

    Can I truncate the unused space and then take a backup because I think the backup will take more time since it's...

  • RE: Database growth

    Thanks Jeffrey.

    Looking at the Actual database growth values, this database has grown approximately 24GB in the last 6 months. So, can I predict that it might grow at the same...

Viewing 15 posts - 76 through 90 (of 156 total)