Viewing 15 posts - 2,356 through 2,370 (of 13,850 total)
Are server A and server B in the same domain?
October 13, 2020 at 3:55 pm
Ugly, but this works:
DECLARE @SchedStart VARCHAR(25) = '2020-06-07-12.30.00.00000';
SELECT @SchedStart
,CAST(STUFF(STUFF(STUFF(LEFT(@SchedStart, 23), 11, 1, ' '), 14, 1, ':'), 17, 1, ':') AS...
October 12, 2020 at 9:09 pm
If there are multiple different values for 'result' in any particular grouping, which one of those would you like to return?
October 9, 2020 at 7:32 pm
If you've got SQL Search at the ready, try searching SSISDB procs for the text 'EncryptByKey'. I think that will indicate most, if not all, of the encrypted columns.
October 7, 2020 at 9:00 pm
Out of interest, what do you mean by 'does not have the master key open'? I've never had to deal with anything like that.
October 7, 2020 at 5:53 pm
Here's another way
DROP TABLE IF EXISTS #Stuff;
CREATE TABLE #Stuff
(
SomeText VARCHAR(1000) NOT NULL
);
INSERT #Stuff
(
SomeText
)
VALUES
('ID=205&SID=1005&TID=3')
,('ID=25&SID=1005&TID=3')
,('ID=2&SID=1005&TID=3')
,('ID=2006&SID=1005&TID=3');
SELECT s.SomeText
...
October 7, 2020 at 2:56 pm
Please read this for details of how NOLOCK can make things go wrong.
October 6, 2020 at 5:21 pm
I was seriously considering setting up a consultancy yesterday and offering my services to HM Gov at a fixed fee of £20m to set up a process using punched...
October 6, 2020 at 4:00 pm
Can I replace them all with a single SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED?
Yes.
Should I replace them all with a single SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED?
No.
At least not if...
October 6, 2020 at 2:51 pm
If you post screenshots of your DB connection manager settings and of the OLEDB source config, we should be able to work out what is going wrong.
Unfortunately, the error message...
October 5, 2020 at 1:58 pm
Thank you for the replies. I have tried OLE DB Source, but it failed on preview. I do see the result if I run a simple SELECT myClumn FROM...
October 5, 2020 at 1:51 pm
You've been here long enough to know this...
If you want a coded solution, please provide sample DDL and sample data in the form of INSERT statements.
October 2, 2020 at 5:36 pm
Does anyone know of a way to only deploy a single package between 2 SSIS Catalogs -- NOT using Visual Studio's package deployment feature. I want the version of...
October 2, 2020 at 4:02 pm
Not sure how you want the output formatted, but does this help?
DROP TABLE IF EXISTS #Stuff;
CREATE TABLE #Stuff
(
StuffId INT NOT NULL IDENTITY(1, 1)...
October 1, 2020 at 7:09 pm
You can use MAX to make this work:
SELECT t.ID
,MAX(t.LegalName)
,MAX(t.City)
,MAX(t.Zip)
FROM...
October 1, 2020 at 3:22 pm
Viewing 15 posts - 2,356 through 2,370 (of 13,850 total)