Viewing 15 posts - 2,551 through 2,565 (of 6,677 total)
March 19, 2018 at 1:42 pm
The only thing you need to worry about is creating the SQL logins on the secondary with the same SID. If you grab the SID from the primary - create...
March 15, 2018 at 4:21 pm
You can avoid all of this by switching your deployment model from package deployment to project deployment - and then deploying to the Integration Services Catalog. If you don't have...
March 14, 2018 at 1:39 pm
Alan - I agree for this specific scenario the other options will perform better. However, you didn't answer the questions I asked - what if the requirements or data change?
March 10, 2018 at 9:27 am
Using a splitter for this is kind of like pole vaulting over mouse turds....
March 9, 2018 at 7:59 pm
If the format will always be delimited by a dash - then you can easily utilize a string split utility. A normal string split will split the results into separate...
March 9, 2018 at 1:20 pm
I avoid these kinds of issues - by insuring that logins created on the mirrored system are created with the same SID that was used to create the login on...
March 8, 2018 at 2:56 pm
I realized there is a much simpler way to get the results:
Declare @product Table (
Product char(1)
, Location tinyint
, TransDate DATE
March 8, 2018 at 11:16 am
March 7, 2018 at 12:57 pm
I use something like this to generate dates:
Declare @minDate date = '2018-03-01'
, @maxDate date = '2018-03-06';
With dates
...
March 6, 2018 at 4:13 pm
March 6, 2018 at 3:38 pm
March 6, 2018 at 2:34 pm
If you are looking for code to identify the primary - this would work:
Select ags.primary_replica
From sys.dm_hadr_availability_replica_states ars
Inner...
February 26, 2018 at 4:05 pm
Not sure if this is what you are looking for: https://www.softlanding.ca/about-Softlanding/resources/blog/getset-ssrs-data-sources-using-powershell
There is also this: https://www.mssqltips.com/sqlservertip/4738/powershell-commands-for-sql-server-reporting-services/
February 26, 2018 at 3:48 pm
Viewing 15 posts - 2,551 through 2,565 (of 6,677 total)