Forum Replies Created

Viewing 15 posts - 2,521 through 2,535 (of 2,917 total)

  • RE: SQL server 2014 is very slow

    To me, I still say your memory is over utilized for that server.  That was what my first post about it was and I stand by that claim still.
    You...

    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: Need Suggestions on Best way to Query Data

    No problem.
    The other option would have been to use "OR" and have 2 entries in your where clause.

    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: Windows SQL Intermittent Connectivity Issue - Error 17830

    As a thought, do either of these VMWare KB's help:
    https://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=1009517
    https://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=2008925

    This would only apply to the VM's, not the physical machines.
    The power profile settings...

    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: No more Linkedservers or database mirroring? How do I create up to date and in sync report tables?

    Where I work, we are working on removing linked servers where possible.
    We are replacing them with  a combination of Service broker and SSIS.
    We have our data warehouse which...

    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: Are the posted questions getting worse?

    Lynn Pettis - Tuesday, June 13, 2017 8:14 AM

    Grant Fritchey - Tuesday, June 13, 2017 5:50 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: Need Suggestions on Best way to Query Data

    Based on your description (I didn't look at your excel files), what you are asking for is not possible.

    You state that TransTable_Description is a column which is no problem....

    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: Maintenance Cleanup Task Works Sporadically

    Sue_H - Friday, June 9, 2017 1:15 PM

    bmg002 - Friday, June 9, 2017 12:50 PM

    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: Data Integrity Check job failure

    If I understand the problem correctly, you have filestream access turned on pointing to M: but you removed the M drive.
    Did you re-point the filestream access to I:?  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.

  • RE: Maintenance Cleanup Task Works Sporadically

    Sue_H - Friday, June 9, 2017 12:19 PM

    bmg002 - Friday, June 9, 2017 11:49 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: Maintenance Cleanup Task Works Sporadically

    Michelle-138172 - Friday, June 9, 2017 10:46 AM

    bmg002 - Thursday, June 8, 2017 1:39 PM

    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: SSIS Question - How do we downgrade a SSIS package written in VS2015 to VS2012

    You should just be able to take the DTSX's and import them into a new project in VS2012.
    The issues you will likely have are more related to the SQL...

    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: De-duplicating column values

    Jacob, thanks for pointing out that those are blank not null as with my solution.

    Update to my solution, replace the first INSERT INTO [#code2] section with:
    [code...

    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: Get Lowest value

    mcfarlandparkway - Thursday, June 8, 2017 2:45 PM

    Its showing error -

    Parse error at line: 1, column: 28:...

    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: Get Lowest value

    mcfarlandparkway - Thursday, June 8, 2017 11:53 AM

    how to get lowest value  fom the code column from the query.
    By looking at 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: De-duplicating column values

    Possibly not the most efficient code, but how about:
    CREATE TABLE #CODE
    (
    ID int ,
    MOD0  varchar  (20),
    MOD1  varchar  (20),
    MOD2  varchar  (20),
    MOD3  varchar  (20),

    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,521 through 2,535 (of 2,917 total)