Viewing 15 posts - 1,876 through 1,890 (of 2,859 total)
Yep. That was what I meant - the database master key in every case of the "master key" except when I had said "service master key".
But basically, if you NEED...
May 15, 2020 at 7:43 pm
My advice is to back up the master key no matter what. Hypothetically, the server dies and needs to be rebuilt from scratch. You install the SQL instance, restore the...
May 15, 2020 at 5:29 pm
I have not seen that exact error, but my guess is that the error isn't being thrown by the SQL Server installer,but being thrown by Windows. My GUESS is that...
May 15, 2020 at 4:30 pm
That is how a firewall is designed though. There are no "shortcuts" with security.
The ONLY other way you can set that up is to allow applications through the firewall instead...
May 15, 2020 at 3:29 pm
CASE statement. I'm not entirely sure where you are running the query, but basically do a check if SYSDATETIMEOFFSET() > Daylight savings start date AND if SYSDATETIMEOFFSET() < Daylight savings...
May 15, 2020 at 2:31 pm
Did you restore the encryption keys using the SSRS configuration tool? Without that, it won't be able to decrypt any encrypted data.
I would recommend checking out this post:
https://stackoverflow.com/questions/46876442/ssrs-migration-from-2008-to-2016/46879292#46879292
and make sure...
May 15, 2020 at 2:22 pm
The post is very confusing. Did you do an inplace upgrade or did you do a migration? I am not sure what an "inplace migration" is. I am also confused...
May 14, 2020 at 9:42 pm
I think if you are stuck on SQL Server 2012, you are going to need to use a CASE statement to handle daylight savings time.
If you can upgrade to 2016,...
May 14, 2020 at 8:48 pm
To add to Frederico_fonseca's response - when I hit snags like that, my first step is to take the innermost portion of the troublesome query section and break it out. ...
May 14, 2020 at 8:37 pm
For something like that, you will need to use dynamic SQL.
Be careful using it though as if it is not designed carefully and with proper safeguards, it is easy to...
May 14, 2020 at 8:25 pm
That is weird that running it in series causes the block as well...
even stranger that running package 1 to call 1 copy of package 2 makes things run successfully.
May 14, 2020 at 4:48 pm
I would capture as much data as I can that makes sense. A timestamp of the import is something I try to capture in the staging and historical tables because...
May 14, 2020 at 4:40 pm
That is a big "it depends" question. OLAP is used for reporting and analytics. OLTP is used for transactional data.
If you have a bunch of data used for application purposes,...
May 14, 2020 at 3:32 pm
SPID -2 is an orphaned DTC transaction:
https://www.sqlskills.com/blogs/paul/disaster-recovery-101-dealing-with-negative-spids-2-and-3/
Another good read on SPID -2:
http://www.eraofdata.com/sql-server/troubleshooting-sql-server/orphaned-msdtc-transactions-2-spids/
So something is starting a distributed transaction and SQL is uncertain on the state of that distributed transaction.
Also, how...
May 14, 2020 at 3:15 pm
My opinion (others may disagree), I try not to denormalize reporting data unless some of the data is going to be used by multiple reports. I try to reduce the...
May 14, 2020 at 2:47 pm
Viewing 15 posts - 1,876 through 1,890 (of 2,859 total)