Viewing 15 posts - 1,921 through 1,935 (of 13,849 total)
Changing the .NET app so that it only loads the data which is required is not possible, I presume?
July 26, 2021 at 2:00 pm
You'll probably get more help with this problem if you attach the actual execution plan.
July 18, 2021 at 4:35 pm
Run this code:
DROP TABLE IF EXISTS #sample_node;
CREATE TABLE #sample_node
(
id INT
,label VARCHAR(10)
,realdate DATETIME
,datedif INT
);
INSERT #sample_node
(
...
July 17, 2021 at 12:25 pm
I always forget about updating the CTE directly. Here is a better version:
WITH calcs
AS (SELECT id
,label
...
July 15, 2021 at 1:45 pm
Something like this?
WITH calcs
AS (SELECT id
,label
,realdate
...
July 15, 2021 at 1:39 pm
If you have five columns in a table and the only PK which 'works' is a combination of all five columns, there can be no updates to the data.
Why not?...
July 15, 2021 at 10:34 am
This could also be done in Posh.
Have a go and see how you get on. Feel free to post back ... if you cannot get this working, I will put...
July 14, 2021 at 12:53 pm
I know nothing about this specific problem.
But adding a Script Task to edit and save the file before onward processing should be straightforward. Can you write a little C#?
July 14, 2021 at 7:41 am
Backup of file: $date = get-date -uformat "_%d_%m_%Y_%H%M%S.bak" $newname=($csv -replace ".csv",$date) Rename-Item $csv $newname
Count: $count=($csv).Count $count
Can I just add this to the bottom of my script?
Thanks.
Why not try and...
July 13, 2021 at 8:05 am
Is it make any difference? These are just statistics about servers collected in diagnostic peruses. For example drive space utilization. Currently I collect that at each server separately. I...
July 11, 2021 at 9:11 am
I just checked the solution using TOKEN and my solution is almost a mirror of Jeffrey's:
left(token( @[User::strDate],".",3),4) + "-" + token( @[User::strDate] , ".", 2) + "-"...
July 11, 2021 at 9:01 am
Metadata, rather than actual data? What sort of metadata?
July 9, 2021 at 2:30 pm
Are you truncating the target tables first? If not, how are you avoiding duplicates?
Might be simpler to perform a backup/ restore - have you considered that?
July 9, 2021 at 1:27 pm
Are the packages being executed with a logging level of 'NONE', perhaps?
July 9, 2021 at 9:56 am
Another option to try is to setup local configs with the pw and see if that works. From the Parms screen click the "Add Parameters to Configuration" button and...
July 9, 2021 at 9:54 am
Viewing 15 posts - 1,921 through 1,935 (of 13,849 total)