Forum Replies Created

Viewing 15 posts - 31 through 45 (of 137 total)

  • RE: Today's Random Word!

    Ed Wagner (3/3/2014)


    crookj (2/28/2014)


    Ed Wagner (2/28/2014)


    Ray K (2/28/2014)


    SQLRNNR (2/28/2014)


    crookj (2/28/2014)


    EricEyster (2/28/2014)


    Revenant (2/28/2014)


    Ed Wagner (2/28/2014)


    Kurt W. Zimmerman (2/28/2014)


    SQLRNNR (2/28/2014)


    cheeseparing

    tightfistedness

    Punch

    Bowl

    spoon

    dollop

    daisy

    Duke

    Muscle Car (GTO)

    Ronnie and the Daytonas

    Dodge

    Ram

  • RE: Downtime

    It is remarkable when organization change from risk avoidance to risk preparedness. Many companies build systems (computer or otherwise) and hope the big issue never happens. Eventually, it does. ...

  • RE: Audit all databases.

    I will give it my best rookie attempt.

  • RE: How to avoid using a cursor?

    Try this out:

    create table inventory (

    InvID int,

    ActivityCode int,

    MovementDate datetime,

    OldLocationID int,

    NewLocationID int

    )

    select I.InvID, I.ActivityCode, I.OldLocationID ,

    sum(datediff(day,I.inDateTime, I.OutDateTime))

    from (

    select I.InvID, I.ActivityCode,...

  • RE: Get SqlDataReader instead of RecordSet in Execute SQL task

    Are you passing the recordset into a script task for the record by record operation? if so, you can perform the procedure execute in the script task and it will...

  • RE: move datafile to a different disk

    Do you need to keep the app online? We occasionally move data in secondary files with the app online. painful,slow, but feasible.

  • RE: Today's Random Word!

    Revenant (2/28/2014)


    Ed Wagner (2/28/2014)


    Kurt W. Zimmerman (2/28/2014)


    SQLRNNR (2/28/2014)


    cheeseparing

    tightfistedness

    Punch

    Bowl

    spoon

  • RE: Log File keep on growing when any maintenance task carried

    bubby (2/28/2014)


    Agreed, but I would I get my size of log low as it is simple database,

    data = 2

    log = 4

    total of 6GB

    how short on space is your system? Yes,...

  • RE: Log File keep on growing when any maintenance task carried

    What is size of the biggest table in the database? My safe estimate for index rebuilds is 2.5 times the size of the original for the log file.

    Shrinking...

  • RE: Audit who is logging in as sa

    Trace will provide all of the login auditing you are looking for including change password. It is easy to configure by using the profiler to build the script.

    Auditing the changes...

  • RE: Audit who is logging in as sa

    I would recommend the background trace which is very easy to filer for just sa

  • RE: SSIS Script Text

    michael.higgins (2/28/2014)


    It does yes but we get round this by writing a custom query to create the headers and add that as part of the BCP script

    Yes, this is the...

  • RE: Standalone SSIS Server - Access Remote SSISDB Catalog

    elmar.fecker (2/28/2014)


    with T-SQL Statement. I plan to create a CMD Job, which calls the Programm SQLCMD and then start a T-SQL Skript which starts the SSIS Package. The CMD Skript...

  • RE: Audit who is logging in as sa

    Do you need just the sa login or any successful login that had sysadmin at that time?

  • RE: SSIS Script Text

    Is there a reason for using a script task versus a data flow?

Viewing 15 posts - 31 through 45 (of 137 total)