Viewing 15 posts - 46 through 60 (of 2,646 total)
bump for visibility.
and speed differences may be to do with settings on ssms vs vb.net
February 6, 2025 at 10:54 am
it really shows a lack of understanding of how SSIS Catalog deployment works, even within VS (which does invoke a command line tool to deploy).
everything can be deployed from CI/CD...
February 4, 2025 at 8:52 am
what happens if you move that SP to another container, being executed after the other ones?
and most times its some settings on your sp's or locking between SP's - and...
January 31, 2025 at 10:17 pm
the best, and probably correct, way is to use your visual studio (or vs code) solution (you do have one don't you!!!) and its schema compare.
while there are 2 ways...
January 30, 2025 at 11:36 pm
doing a select * in SSMS will also be impacted by network speed between workstation and server, workstation processor (and available cpu %), memory, disk speed, and SSMS settings.
if you...
January 30, 2025 at 10:10 am
SELECT DISTINCT tp.client_id AS Member_ID
, tp.PaidDate AS Paid_Date
, tp.DOS
FROM #ins_temp tp
WHERE (@dateChoice = 'Paid_Date' and...
January 24, 2025 at 4:14 pm
This does not bring back any records unfortunately:
SELECT DISTINCT tp.client_id AS Member_ID
, tp.PaidDate AS Paid_Date
, tp.DOS
FROM #ins_temp tp
WHERE (@dateChoice = 'Paid_Date' and tp.PaidDate BETWEEN @startDate AND...
January 24, 2025 at 3:51 pm
SELECT DISTINCT tp.client_id AS Member_ID
, tp.PaidDate AS Paid_Date
, tp.DOS
FROM #ins_temp tp
WHERE (@dateChoice = 'Paid_Date' and tp.PaidDate BETWEEN...
January 24, 2025 at 9:42 am
That's exactily the reason why we scan and alert for such usage (use of own database name).
Do this for as well sprocs, views, functions, ...)
"Sloppy development" like "start from...
January 23, 2025 at 8:53 am
this looks simpler. may try it. https://stackoverflow.com/questions/13627337/read-excel-cell-values-with-ssis-script-task . not sure if sheet has to be a table or not in order for the select statement to work.
just saw the...
January 22, 2025 at 11:27 pm
Consider VBA for extracting cell-level data, you can run the script directly from Excel. You could create a macro that triggers on a specific event, like opening the workbook...
January 22, 2025 at 10:58 pm
look at https://learn.microsoft.com/en-us/sql/integration-services/extending-packages-scripting-data-flow-script-component-types/creating-a-source-with-the-script-component?view=sql-server-ver16 - this can feed to any dataflow component that accepts input (union is one of them)
January 17, 2025 at 2:34 pm
original question - NO - you can not have the output of powershell as a source on your dataflow - you could however do the same in C# component source.
Regarding...
January 17, 2025 at 11:53 am
not me (and many of the prior replies are trolls I believe)
January 16, 2025 at 11:41 pm
Yes, despite some rather "hacky" solutions, you can't have the x86 and x64 Redistributables installed on the same system. Ideally, you have the one that matches what's on the...
January 16, 2025 at 2:13 pm
Viewing 15 posts - 46 through 60 (of 2,646 total)