Viewing 15 posts - 1 through 15 (of 288 total)
If the symbol and trade_date form a unique pair in the entire table, make that combination the Clustered Primary Key. Leave this clustered index on the table at all...
November 23, 2024 at 4:56 pm
Not quite the same result but has all the info:
SELECT *
FROM #STOCKS1 AS T1
FULL JOIN #STOCKS2 AS T2
...
November 14, 2024 at 5:14 pm
Maybe?:
SELECT SYMBOL1, SYMBOL2
FROM (
SELECT SYMBOL1, ROW_NUMBER() OVER(ORDER BY SYMBOL1) AS row_num_1
FROM #STOCKS1 S1
WHERE NOT...
November 14, 2024 at 3:28 pm
I made a bit of progress. The format doesn't quite match the desired outcome. What can I do to fix it so it does match the desired outcome?
November 14, 2024 at 5:57 am
I figured out the problem. I just don't know the best way to fix it.
The problem is that some files have an apostrophe in the name:
Information: 0x0...
November 8, 2024 at 1:56 am
I tried using C# to load them. Still getting errors (but different this time).
Errors:
SSIS package "C:\Users\Me\Documents\Trading\SSIS\Analysis Toolkit SSIS v4\Analysis Toolkit SSIS\Package.dtsx" starting.
Information: 0x0 at Update Table Stocks...
November 7, 2024 at 7:56 pm
I made a mistake. There was so much output that I missed other errors. Here is the revised list:
Error: 0xC0202009 at Update Table Stocks, Update Stocks Table...
November 7, 2024 at 4:45 pm
Are you confirming that you have done as I suggested and that the same error occurs?
Sorry for the confusion. The post you are referring to isn't related to your...
November 7, 2024 at 4:29 pm
I thought that maybe because I am not outputting NAME into the final table that may be the issue. It didn't change anything.
Error: 0xC02020A1 at Update Table...
November 7, 2024 at 4:14 pm
If you look at the column headers of the file and compare them to the table, they don't match. We can't see your package to know what the...
November 7, 2024 at 4:01 pm
OK, those errors are actually pretty helpful.
There must be one or more occurrences of the column NAME in file
ADAP.O#Adaptimmune Therapeutics ADR Representing 6 Ord Shs (D).csv
where the data is...
November 7, 2024 at 3:50 pm
Have you looked at what's going on in SQL server when the procedures get stuck? If you use something like sp_whoisactive it's easy to see if you have spids...
November 5, 2024 at 8:33 pm
I think the issue is different so I am going to start a new thread
November 4, 2024 at 8:35 pm
Here you are courtesy of ChatGPT:
Yes, it’s possible to run specific stored procedures (SP1 and SP2) in parallel and then have SP3 and SP4 execute in series within a...
November 4, 2024 at 7:10 pm
I have two versions of SSIS setup to test the benefits of parallelism.
Version 1 - no parallelism setup. The precedence constraint I am using between the Execute SQL Tasks is...
November 4, 2024 at 7:07 pm
Viewing 15 posts - 1 through 15 (of 288 total)