Viewing 6 posts - 1 through 6 (of 6 total)
Chris Hurlbut - Tuesday, April 24, 2018 2:23 PMI had to create a powershell proxy account to run ps from sql
I solved...
April 25, 2018 at 2:04 am
April 21, 2018 at 5:36 am
Solved!
With this:
SELECT Name,Templates,Mail
FROM table f
CROSS APPLY OPENJSON(f.detail)
WITH (Name nvarchar(100) ,
Templates nvarchar(max) AS JSON,
Mail nvarchar(100)
)
I obtain this:
test1,"UPDATE",test1@gmail.com
test2,"READ","DELETE",test2@gmail.com
with this:
SELECT f.Name,secondlevel.value,f.Mail
FROM table f
CROSS...
November 18, 2016 at 3:13 am
On primary replica, the Log driver is well size, I think this shouldn't be a big issue.
Summarizing, into the D.R. server room I'll power off Sql Server (secondary replica), ...
April 6, 2016 at 6:53 am
Hi,
I moved forward in this problem even if I did solve.
One detail probably important: The SSSI package I'm trying to run, has a Sql task (with a parametric connection) which...
March 12, 2016 at 6:05 am
When I connect from Server2 to Server1 I'm using Windows Login, the same domain user I use when I connect from Server1.
Thanks
Regards
March 9, 2016 at 12:03 am
Viewing 6 posts - 1 through 6 (of 6 total)