Forum Replies Created

Viewing 15 posts - 1,981 through 1,995 (of 6,401 total)

  • RE: Accessing SSRS from Subdomain

    Unless I'm missing something here....

    That would just be a CNAME record in DNS to divert the request to the servername

    EG, if the server is called SSRSServer1.myapp.com

    You would create a CNAME...

  • RE: Query The Same FIeld Name

    What is the expected outcome of the query?

  • RE: Maintenance plans and WITH FORMAT

    OK, your getting corruption in the media header then hence why you want to use FORMAT to recreate the media header.

    I would defiantly look at creating a new file each...

  • RE: Concatenate Random Date + Random Time = Error!

    Another way

    SELECT

    CONVERT(DATETIME,

    CONVERT(VARCHAR(10),

    CONVERT(DATETIME,

    ABS(CHECKSUM(NEWID()))%(780)+(33968)

    )

    ,120)

    +'T'+

    CONVERT(VARCHAR(12),

    CONVERT(TIME,

    DATEADD(MILLISECOND,ABS(CHECKSUM(NEWID()))%86400000 ,'00:00')

    )

    )

    )

  • RE: Maintenance plans and WITH FORMAT

    Either or.

    Personally, I would never append a backup to an existing file. I would always create a new file for each backup, that way if corruption happens on day...

  • RE: Maintenance plans and WITH FORMAT

    The closest your going to get with a maintenance plan is to set the expiry to 1 day, to expire the media set.

    The alternative would be to backup to a...

  • RE: Maintenance plans and WITH FORMAT

    Are you backing up each day to the same file?

    If so do you never need to go back more than the current backup?

    Format will write new header information so any...

  • RE: Today's Random Word!

    Ed Wagner (10/19/2015)


    DonlSimpson (10/19/2015)


    ZZartin (10/19/2015)


    Ed Wagner (10/19/2015)


    anthony.green (10/19/2015)


    Ray K (10/19/2015)


    Ed Wagner (10/19/2015)


    crookj (10/19/2015)


    Ed Wagner (10/19/2015)


    anthony.green (10/19/2015)


    djj (10/19/2015)


    Retrieve

    Post (HTTP request)

    Office

    Depot

    Home

    Plate

    Pie

    Cake

    Butter

    Toast

    Bread

    Pudding

  • RE: Query to Split the String as rows and columns in SQL

    Luis Cazares (10/19/2015)


    This can be done without temp tables as there's a single row returned.

    Unless I'm missing something, here's my suggestion.

    --Dynamic Pivot

    DECLARE @sql NVARCHAR(MAX);

    /*

    STUFF is used...

  • RE: Today's Random Word!

    Ray K (10/19/2015)


    Ed Wagner (10/19/2015)


    crookj (10/19/2015)


    Ed Wagner (10/19/2015)


    anthony.green (10/19/2015)


    djj (10/19/2015)


    Retrieve

    Post (HTTP request)

    Office

    Depot

    Home

    Plate

    Pie

  • RE: Today's Random Word!

    djj (10/19/2015)


    Retrieve

    Post (HTTP request)

  • RE: INSERT results in operating system error 1237 could not allocate a new page...

    Do all the servers in the cluster have enough space to allow all secondaries to grow also?

    Could one of the other servers E drives only have 50GB free for example?

  • RE: Query to Split the String as rows and columns in SQL

    Sounds like you need a double split dynamic pivot

    You will need the dbo.delimitedsplit8k function which can be found in my signature on the "String Splitter Link"

    Then you will need to...

  • RE: Today's Random Word!

    Ed Wagner (10/19/2015)


    anthony.green (10/19/2015)


    Ed Wagner (10/16/2015)


    anthony.green (10/16/2015)


    Ed Wagner (10/16/2015)


    anthony.green (10/16/2015)


    crookj (10/16/2015)


    anthony.green (10/16/2015)


    Ed Wagner (10/16/2015)


    anthony.green (10/16/2015)


    Ed Wagner (10/15/2015)


    Levi

    Reggae Reggae Sauce

    French Cooking (going from the word Sauce)

    Toast

    Rocky (Horror Picture Show)

    Road (mmmm...

  • RE: INSERT results in operating system error 1237 could not allocate a new page...

    Are the files in the primary filegroup allowed to grow? If so whats the current filesizes, growth rate and is there enough storage to auto grow the database...

Viewing 15 posts - 1,981 through 1,995 (of 6,401 total)