Forum Replies Created

Viewing 15 posts - 3,091 through 3,105 (of 13,469 total)

  • RE: Securty Trigger stroed procedure

    srimkumarp-720356 (7/22/2013)


    Thanks for the information.

    We are using only Server level audit trigger.

    For example :- I created the login on one server and later drop the same login. Now I want...

  • RE: Securty Trigger stroed procedure

    srimkumarp-720356 (7/22/2013)


    Hi ,

    I want to capturethe Audit Server Security Events , like if any one doing Create / Alter / Drop logins on server level ,...

  • RE: Truncate permission only on specified tables

    truncate is not granular like that; it's inherent in db_owner and db_ddladmin, i believe.

    just make sure noone has those rights.

    what difference is there if the user is allowed to delete...

  • RE: Help on finding the total space used by a database schema

    Guras (7/19/2013)


    I need to find the disk space estimation to create a new database with all the objects of the current databases ( without the data copied) ..for e.g. I...

  • RE: Disable database user

    fraggle i just tested this myself;

    i was hoping i could alter a user and remove their mapping to the existing login, but i found i had to crop and recreate...

  • RE: Force SQL jobs to run serially, not in parallel

    I'd say if you have 14 separate jobs, they should not be scheduled to execute at all. i'd actually remove them to avoid confusion.

    instead,

    shouldn't you create one single...

  • RE: using the default trace

    no, not the default trace; you'd need to use the dmvs instead.

    the default trace only tracks DDL or database settings changes...create/drop, alter, stuff like that; nothing related to Data access...

  • RE: capture currently logged in users from sql

    huum (7/17/2013)


    I want to capture users logged int o my database from 9-5 and then get the average per day.

    can i please have the guidence

    users don't actually login at a...

  • RE: Find Data Source

    an example of checkign the references HanShi mentioned:

    --Objects:

    SELECT objz.name,

    fn.*

    FROM sys.objects objz

    CROSS APPLY sys.dm_sql_referenced_entities(schema_name(schema_id) + '.' + objz.name,'OBJECT')fn

    WHERE referenced_entity_name ='all_data'

    and just in case, you can check the...

  • RE: Drop a database user on a linked server.

    Charles Deaton (7/15/2013)


    That wprk fine for dropping the user from the master database. Is it possible to specify the database I need?

    just a a USE DatabaseName to the command, if...

  • RE: If Statement in a View/Query

    ok ray, this looks like a business "fiscal year" question, right?

    ie my biz year goes from july1 to jun30 of the next year?

    substitue MyDate for GETDATE() in this query, and...

  • RE: If Statement in a View/Query

    rayh 98086 (7/11/2013)


    Hello,

    I would like to create a SQL query that will make a decision based on date. For example, if the date is Jun 30,2013 or greater, then...

  • RE: SQL Express Tools

    http://www.microsoft.com/en-us/sqlserver/editions/2012-editions/express.aspx

    go to this page, and click on the red button that says "Download SQL Server 2012 Express"

    a div will appear with various downloads, so just click the one that says...

  • RE: How do you manage your code snippets/documentation?

    erikd (7/10/2013)


    Thanks, Lowell. Is your library at all portable? I find myself working from several computers, and several more term servers, so it's helpful for me to be able to...

  • RE: find session

    newbieuser (7/10/2013)


    OH really? I thought its in MB?

    yes it is, but that's what's so tricky! it's not obvious!

    how much is 2147483647 MegaBytes?

    2147483+ Gigabytes!

    2147+ TeraBytes!

Viewing 15 posts - 3,091 through 3,105 (of 13,469 total)