Forum Replies Created

Viewing 15 posts - 4,951 through 4,965 (of 6,400 total)

  • RE: SQLServer Agent Output File

    the log column of sysjobstepslog is nvarchar(max) so can hold up to 2gb of data, so should be more than enough when logging to the table.

  • RE: How to control user access when company only adds active directory groups as logins?

    there is no way to audit people adding people to groups as thats outside of SQL, what you could do is run xp_logininfo on the group at regular times and...

  • RE: Select statement issue

    well you will need two variable then one for the lower value in the range and one for @FromDate

    Something like @FromDate date, @ToDate date where @FromDate = 2012-05-01 or 2012-05-15...

  • RE: SQLServer Agent Output File

    Two things I can think of,

    1 - have a secondary job which is fired from the completion of Job 1, which pulls the information from the sysjobstepslogs table and runs...

  • RE: Today's Random Word!

    crookj (5/23/2012)


    eccentricDBA (5/23/2012)


    crookj (5/23/2012)


    Ray K (5/23/2012)


    Daniel Bowlin (5/23/2012)


    L' Eomot Inversé (5/23/2012)


    SQLRNNR (5/22/2012)


    slot

    machine

    one armed bandit

    Blackjack

    Texas Hold Em

    Horseshoe Casino Cleveland

    Double Eagle Cripple Creek

    engelbert humperdinck

  • RE: Today's Random Word!

    Ray K (5/23/2012)


    Daniel Bowlin (5/23/2012)


    L' Eomot Inversé (5/23/2012)


    SQLRNNR (5/22/2012)


    slot

    machine

    one armed bandit

    Blackjack

    Fruit Salad

  • RE: Select statement issue

    Your going to have to build in some code which does a check on @FromDate and change the value to the right one for the date range it is in,...

  • RE: Transaction Log Setup

    No you didnt set it up wrong, its just you said to constaintly backup to the same file so it keeps adding each TX Log backup to the same file...

  • RE: Transaction Log Setup

    actually after remembering, you need to use the INIT command as well, which will allow the media set to be overwritten so it will mess up your PIT Restores.

    your best...

  • RE: t-sql columns

    Personally I would ask the company you recieve the files from for a copy or details of the schema which they export from, so that you can get an exact...

  • RE: Transaction Log Setup

    Yes, and might take some time depending on how many logical files are within the physical file

  • RE: Transaction Log Setup

    Your confusing the TRN and LDF, they are NOT the same thing

    TRN = Transaction Log BACKUP

    LDF = Transaction Log

    How big is the LDF file for the Production database? ...

  • RE: Need to merge date functions to render date

    Just need to add the convert to the end of the dataadd/difs

    SELECT CONVERT(VARCHAR,DATEADD(dd,DATEDIFF(dd,0,DATEADD(MONTH,-13,GETDATE())),0),101)

  • RE: Transaction Log Setup

    .TRN usually means its a transaction log backup file, not the actual log file used in the database, this has the file extension .LDF.

    If every log backup is running the...

  • RE: How to Tune Performane of Stored Procedure

    such a broad topic, there are plenty of good articles buy doing a search in a search engine of your choice, but if you have something specific, please follow the...

Viewing 15 posts - 4,951 through 4,965 (of 6,400 total)