Forum Replies Created

Viewing 6 posts - 1 through 6 (of 6 total)

  • RE: PowerShell Sql job

    Chris Hurlbut - Tuesday, April 24, 2018 2:23 PM

    I had to create a powershell proxy account to run ps from sql

    I solved...

  • RE: PowerShell Sql job

    Sue_H - Friday, April 20, 2018 2:14 PM

    vincenzo_capelli - Friday, April 20, 2018 2:06 PM

  • RE: Json Query

    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...

  • RE: Alwayson Maintenance secondary replica

    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), ...

  • RE: Integration Services Catalogs remote execution

    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...

  • RE: Integration Services Catalogs remote execution

    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

Viewing 6 posts - 1 through 6 (of 6 total)