Viewing 15 posts - 46 through 60 (of 103 total)
March 20, 2018 at 12:56 am
Ok, more data points...
My source is SQL Server. I'm copying data from ServerSrc to ServerTgt. I have no rights on ServerSrc other than query data.
My parameters...
March 19, 2018 at 6:52 pm
FYI, connect.microsoft.com is retired. https://docs.microsoft.com/en-us/collaborate/connect-redirect. Search on "SQL Server".
Use this instead: https://feedback.azure.com/forums/908035-sql-server.
March 18, 2018 at 8:01 pm
@All:
From my post above:
"My source table is on a remote server. I have no rights on that server - I can only read data, can't create views, sp's,...
March 18, 2018 at 7:42 pm
Thanks for all the replies. I've been pretty busy so apologies for the delayed follow up post.
"Have you tried building the SQL in an expression and using that...
March 15, 2018 at 9:17 pm
tl;dr: Is WITH (NOLOCK) always bad practice?
Well kind of disappointing that there's no comments or advice on this post, but it happens. I acknowledge that could certainly be...
March 15, 2018 at 6:58 pm
Thanks for all the replies...nah, just kidding. Damn, I must ask the really hard questions 😉
The first view is now:
CREATE VIEW [dwh].[vwDIAGNOSIS]
AS
--...
March 12, 2018 at 1:24 am
So I found this SO post: https://stackoverflow.com/questions/42782464/error-in-ssis-parameters-cannot-be-extracted-when-parsing-query-syntax-error
Which echoes my original sentiment: SSDT is braindead.
March 7, 2018 at 6:19 pm
Nesting the CTE doesn't work either:
SELECT *
FROM (
SELECT *, ROW=ROW_NUMBER() OVER (
PARTITION BY facility_identifier, stay_number, episode_sequence_number
ORDER BY...
March 7, 2018 at 6:16 pm
Perhaps I could but I don't want to. If dtexec is so braindead that it can't execute a file system package ala SSDT, then I'll just deploy the project, run...
February 5, 2018 at 1:49 pm
After posting my OP, I found this: https://stackoverflow.com/questions/31388748/ssis-project-connections (which is nowhere in the documentation)
But dtexec /package FACILITY.dtsx /project '.\bin\Development\RLDX - Tmp.ispac'
Just flashes a command window, says the...
February 5, 2018 at 1:03 am
(This post is morphing into best practice for code maintenance, rather than the original topic, but let's run with it...)
Background:
I have 30 staging tables with the same...
January 17, 2018 at 3:44 pm
January 16, 2018 at 4:19 pm
January 16, 2018 at 4:01 pm
@scott Coleman
Thanks for the reply.
Do I have to jump through hoops using parameters and dynamic SQL, or is there something simple I'm missing?
January 15, 2018 at 3:13 pm
Viewing 15 posts - 46 through 60 (of 103 total)