Viewing 15 posts - 2,551 through 2,565 (of 6,679 total)
As stated earlier - you need to create the login on each secondary with the same SID that was created on the primary. When you create the user in the...
March 23, 2018 at 12:14 pm
March 22, 2018 at 12:11 pm
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
Viewing 15 posts - 2,551 through 2,565 (of 6,679 total)