Forum Replies Created

Viewing 15 posts - 2,311 through 2,325 (of 2,917 total)

  • RE: Occasional mysterious time outs on SQL Server db table

    I was re-reading the problem and discussing it outside of this thread a little bit, and I'm not sure if the current path that we are following will lead us...

    The above is all just my opinion on what you should do. 
    As with all advice you find on a random internet forum - you shouldn't blindly follow it.  Always test on a test server to see if there is negative side effects before making changes to live!
    I recommend you NEVER run "random code" you found online on any system you care about UNLESS you understand and can verify the code OR you don't care if the code trashes your system.

  • RE: Search breaks reports

    heh... yep... that fixed it.  I changed my fiew to "tiles" and it was fixed so I am expecting it to be the same problem.

    I'll schedule a window...

    The above is all just my opinion on what you should do. 
    As with all advice you find on a random internet forum - you shouldn't blindly follow it.  Always test on a test server to see if there is negative side effects before making changes to live!
    I recommend you NEVER run "random code" you found online on any system you care about UNLESS you understand and can verify the code OR you don't care if the code trashes your system.

  • RE: Occasional mysterious time outs on SQL Server db table

    joshua.james.1979 - Thursday, September 14, 2017 5:16 PM

    The index scan looks ok, the estimated number of rows is exactly the same count...

    The above is all just my opinion on what you should do. 
    As with all advice you find on a random internet forum - you shouldn't blindly follow it.  Always test on a test server to see if there is negative side effects before making changes to live!
    I recommend you NEVER run "random code" you found online on any system you care about UNLESS you understand and can verify the code OR you don't care if the code trashes your system.

  • RE: Authentication KERBEROS and NTLM

    Adding to what Sue_H said, I don't think you can nicely set up a local account (such as NT Service\MSSQLSERVER) with KERBEROS without using delegation.  I think in that case...

    The above is all just my opinion on what you should do. 
    As with all advice you find on a random internet forum - you shouldn't blindly follow it.  Always test on a test server to see if there is negative side effects before making changes to live!
    I recommend you NEVER run "random code" you found online on any system you care about UNLESS you understand and can verify the code OR you don't care if the code trashes your system.

  • RE: A user you are following, "...", has posted new content: but I'm not following this user

    Steve Jones - SSC Editor - Friday, September 15, 2017 9:51 AM

    webmaster @ this domain

    Email sent.  I found 4 emails after doing...

    The above is all just my opinion on what you should do. 
    As with all advice you find on a random internet forum - you shouldn't blindly follow it.  Always test on a test server to see if there is negative side effects before making changes to live!
    I recommend you NEVER run "random code" you found online on any system you care about UNLESS you understand and can verify the code OR you don't care if the code trashes your system.

  • RE: A user you are following, "...", has posted new content: but I'm not following this user

    Steve Jones - SSC Editor - Friday, September 15, 2017 9:12 AM

    Be good to forward these on to the webmaster. We can...

    The above is all just my opinion on what you should do. 
    As with all advice you find on a random internet forum - you shouldn't blindly follow it.  Always test on a test server to see if there is negative side effects before making changes to live!
    I recommend you NEVER run "random code" you found online on any system you care about UNLESS you understand and can verify the code OR you don't care if the code trashes your system.

  • RE: A user you are following, "...", has posted new content: but I'm not following this user

    I had this happen to me a few times too.  One time it was a spam bots post that it claimed I was following.  I still have copies of the...

    The above is all just my opinion on what you should do. 
    As with all advice you find on a random internet forum - you shouldn't blindly follow it.  Always test on a test server to see if there is negative side effects before making changes to live!
    I recommend you NEVER run "random code" you found online on any system you care about UNLESS you understand and can verify the code OR you don't care if the code trashes your system.

  • RE: Problem with parameterized query

    Phil Parkin - Tuesday, September 12, 2017 11:14 AM

    bmg002 - Tuesday, September 12, 2017 10:36 AM

    The above is all just my opinion on what you should do. 
    As with all advice you find on a random internet forum - you shouldn't blindly follow it.  Always test on a test server to see if there is negative side effects before making changes to live!
    I recommend you NEVER run "random code" you found online on any system you care about UNLESS you understand and can verify the code OR you don't care if the code trashes your system.

  • RE: Convert this SQL Agent Job Step to Powershell

    AlexSQLForums - Tuesday, September 12, 2017 9:22 AM

    Thank you bmg002

    Not a problem.  If you have any questions about that powershell, let...

    The above is all just my opinion on what you should do. 
    As with all advice you find on a random internet forum - you shouldn't blindly follow it.  Always test on a test server to see if there is negative side effects before making changes to live!
    I recommend you NEVER run "random code" you found online on any system you care about UNLESS you understand and can verify the code OR you don't care if the code trashes your system.

  • RE: Problem with parameterized query

    Good thoughts with that Thom.  SQL Injection, while unlikely in a NVARCHAR(19), could occur.  Your solution does eliminate the risk involved of SQL injection.
    I suppose if you knew that...

    The above is all just my opinion on what you should do. 
    As with all advice you find on a random internet forum - you shouldn't blindly follow it.  Always test on a test server to see if there is negative side effects before making changes to live!
    I recommend you NEVER run "random code" you found online on any system you care about UNLESS you understand and can verify the code OR you don't care if the code trashes your system.

  • RE: Problem with parameterized query

    I could be wrong, but I think you will need to build this as dynamic SQL.  That is:
    DECLARE @query varchar(255)
    DECLARE @comp_cod nvarchar(19) = N'2,3'
    SELECT @query...

    The above is all just my opinion on what you should do. 
    As with all advice you find on a random internet forum - you shouldn't blindly follow it.  Always test on a test server to see if there is negative side effects before making changes to live!
    I recommend you NEVER run "random code" you found online on any system you care about UNLESS you understand and can verify the code OR you don't care if the code trashes your system.

  • RE: Convert this SQL Agent Job Step to Powershell

    AlexSQLForums - Friday, September 8, 2017 8:29 PM

    Hi Jeff
    Using exec xp_cmdshell works but the requirement is to be done in PS.

    Just to...

    The above is all just my opinion on what you should do. 
    As with all advice you find on a random internet forum - you shouldn't blindly follow it.  Always test on a test server to see if there is negative side effects before making changes to live!
    I recommend you NEVER run "random code" you found online on any system you care about UNLESS you understand and can verify the code OR you don't care if the code trashes your system.

  • RE: disable Guest accounts

    Adding to what Sue_H said, and expanding on what Steve Jones said, I tend to avoid ms_foreachdb (for the reasons that Sue_H posted) and would much rather write my own...

    The above is all just my opinion on what you should do. 
    As with all advice you find on a random internet forum - you shouldn't blindly follow it.  Always test on a test server to see if there is negative side effects before making changes to live!
    I recommend you NEVER run "random code" you found online on any system you care about UNLESS you understand and can verify the code OR you don't care if the code trashes your system.

  • RE: Remote query gets killed after ten minutes

    Jeff Moden - Wednesday, September 6, 2017 1:07 PM

    bmg002 - Wednesday, September 6, 2017 8:18 AM

    The above is all just my opinion on what you should do. 
    As with all advice you find on a random internet forum - you shouldn't blindly follow it.  Always test on a test server to see if there is negative side effects before making changes to live!
    I recommend you NEVER run "random code" you found online on any system you care about UNLESS you understand and can verify the code OR you don't care if the code trashes your system.

  • RE: Execution plan over estimation

    Nested queries can be problematic as well.  Might want to use a CTE or a temp table to store the nested query which may give better results.  Since you are...

    The above is all just my opinion on what you should do. 
    As with all advice you find on a random internet forum - you shouldn't blindly follow it.  Always test on a test server to see if there is negative side effects before making changes to live!
    I recommend you NEVER run "random code" you found online on any system you care about UNLESS you understand and can verify the code OR you don't care if the code trashes your system.

Viewing 15 posts - 2,311 through 2,325 (of 2,917 total)