Forum Replies Created

Viewing 15 posts - 2,356 through 2,370 (of 2,917 total)

  • RE: Is there a Cloud Server with SQL Server 2008 R2 and SSIS Business Intelligence Loaded?

    Geeze, I seem to be bad at offering advice today, eh?

    I apologize for the misinformation I provided.

    That being said, and back to the OP, I don't...

    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: Is there a Cloud Server with SQL Server 2008 R2 and SSIS Business Intelligence Loaded?

    Right... forgot that developer only went free with future versions.

    With express, does that let you do SSIS?  I can't remember and it has been a very long time...

    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: Is there a Cloud Server with SQL Server 2008 R2 and SSIS Business Intelligence Loaded?

    I think that you need to use Visual Studio 2008 (with the SQL Server Data Tools installed) and that should allow you to create SSIS pacakges to run against a...

    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 Deployment - No Integration Services?

    Pretty sure Express doesn't include the advanced things like SSIS.  It should be part of the install (Integration Services).  I actually thought that SQL Server Agent didn't work with express...

    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: Lost the Backup History after new full backup

    Not sure if I'm helping or not, but I know where I work, we have a separate job for cleaning up the history.  My preference is to have a maintenance...

    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: Update same row twice

    OH... you could likely sum it over a partition then, no?
    It is the t.MktDiff column that you are trying to sum up... what if you change the line:

    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: Tempdb setup for SQL 2016

    durai nagarajan - Wednesday, August 16, 2017 8:58 AM

    Beatrix Kiddo - Wednesday, August 16, 2017 6:26 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: Update same row twice

    LinksUp - Tuesday, August 15, 2017 5:10 PM

    I have updated the original post with DDL for #TRValue with 3 rows. 

    After it is...

    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: Executing a Stored Procedure multiple times.

    Do all of your parameters need to be unique?  That is, is could you reduce the number of parameters by reusing some?

    If not, could update the parameters as...

    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: Update same row twice

    Can you post DDL and sample data for TRValue and TRProp?
    We'll need more info in order to help.  But best guess is that it isn't actually skipping it, it...

    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: Is there a way to compare object and datatype differences between databases?

    I'm sure there are some free tools, but I recommend RedGate's SQL Compare for that task.

    I used it when we were upgrading a system recently and found it...

    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: Tempdb setup for SQL 2016

    My personal preference is to not fill the disk.  Start the database out at a reasonable size.
    Filling the disk means you may get a surprise one day when it...

    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 Group by and Sum

    I think (but can't be sure without seeing the data) is that you'd want to add an extra clause to your WHERE in the nested selects.  You would want 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: Replication subscriber log continuously growing

    To me, your solution sounds more like a workaround to me.  Or did running that once fix the log growth issue?

    I'm just thinking that to me, your solution...

    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: Give access to users for certain data in the table or move that set of data to new table

    Depending on how they need to share the data, you could have a new database per city.
    likely not an ideal solution, but it is another option.

    a new...

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