Forum Replies Created

Viewing 15 posts - 1,846 through 1,860 (of 2,917 total)

  • Reply To: SSRS "My Subscriptions" Fails to Load if TLSv1.0 Is Disabled on the Server

     

    Step 1 - check the logs.  SSRS logs, SQL Server logs, and Windows event logs.  One of those will have more information about the error.

    If the logs are not helpful,...

    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.

  • Reply To: Hi all, just registered with SQLServerCentral.

    I agree with Steve here.

    On top of that, if you are wanting someone to help with a project, you should provide some details on the project.  Is it strictly 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.

  • Reply To: Are You a Gatekeeper?

    I just read the article and I think I am a mix of gatekeeper and flexible.   Some things I see as hard-fast rules that should not be debated with 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.

  • Reply To: Password for SSIS catalog/DB

    To recovery the master key, if the password is known, you run (the button for adding SQL is missing for me right now, sorry for the poor formatting):

    OPEN MASTER KEY...

    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.

  • Reply To: Works from my machine..

    My first thought is it the same version of DTExec on your machine and the server?

    One thing I am reading about that particular error (0x800004005) makes it sound like error...

    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.

  • Reply To: SSAS 2016 Memory Issues

    Since you are on 64-bit and Enterprise Edition, it is likely that the system is running out of  memory to process the data.

    I would check things out on the server...

    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.

  • Reply To: Not able to upload gis esri .shp shape file on SSRS report server

    How large is the file?  From what I remember (and a quick bit of googling), SSRS doesn't limit file types by default and I'm not even sure it supports limiting...

    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.

  • Reply To: SSAS 2016 Memory Issues

    Few things i would check before looking at upgrading from 2016 to 2017. My expectation is that upgrade won't help, but it might if it is a 32-bit vs 64-bit...

    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.

  • Reply To: The Order of Operations

    Vladan wrote:

    It seems that it is the two operators following each other "/-" that causes unexpected behavior (not the minus at the beginning).

    SELECT -100.0/-100.0*10.0 => 0.1

    SELECT (-1*100.0)/-100.0*10.0 =>0.1

    SELECT -100.0/(-1*100.0)*10.0 =>...

    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.

  • Reply To: sql server 2008r2 to sql server 2019 upgrade

    My opinion, that should work.  I see no obvious reason why it wouldn't work.

    The only case where I can see it being problematic is would be if you set database...

    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.

  • Reply To: Migrating SSRS from 2014 to 2019

    Is sharepoint referencing the SQL Instance directly, or is it referencing the web interface?  If it is referencing the web  interface, then you don't have much to worry about 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.

  • Reply To: Microsoft SQL Server Management Studio - Creating a backup file

    I personally have not seen that error before, but my first thought here is going to be either permissions or a typo.

    First step that I would do is if 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.

  • Reply To: Migrating SSRS from 2014 to 2019

    My first thoughts on this are that renaming a SQL instance is tricky and can be problematic.  I would recommend picking a name that works for the new server if...

    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.

  • Reply To: Linked server

    I think the only way to limit this is to put restrictions on the linked server itself.

    What I mean is to set the authentication on the linked server to be...

    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.

  • Reply To: how to rename ssis solutionwith subfolders

    I agree with all of the comments.  To add to this though, if you want to search inside files and not use powershell, astrogrep is my tool of choice.

    My process...

    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 - 1,846 through 1,860 (of 2,917 total)