Viewing 15 posts - 661 through 675 (of 13,841 total)
Have you tested this script for performance with, say, one million rows in the Excel sheet? It would be interesting to know how it performs when compared with doing the...
January 15, 2024 at 9:26 am
Sorry, what is the point to create a SSIS script AND C# code?
Isn't simpler to create just small C# program or even VBA script with the same functionality ?
You're...
January 15, 2024 at 9:22 am
What you have provided are the properties for a Script task. There is no hint of any data being 'read'. Do you really think that anyone will be able to...
January 15, 2024 at 9:19 am
Try changing your WHERE clause to this:
WHERE CAST(DocumentXML AS NVARCHAR(MAX)) LIKE '<Document>%'
January 12, 2024 at 4:19 pm
As these 'errors' are not considered significant enough to halt execution, I'd suggest logging them as they happen to an ErrorLog table and picking up / reporting any entries created...
January 11, 2024 at 3:54 pm
Thank you!
Can you give an example of the sort of failures you are referring to? I'm assuming nothing terminal (network failure, hardware failure etc).
January 11, 2024 at 3:45 pm
By default, stored procedure failures would (as far as I remember) fail the package from which they are executed. I assume you've configured things so that this does not happen?...
January 11, 2024 at 2:57 pm
Can you please confirm this statement:
1 record has match is 2 because it has in 2 subsequent previous month data was there with mainhost
You are referring to the 2023-12-31 row,...
January 11, 2024 at 9:08 am
Thank you, sorry i dont know the different between sql server and mysql. I'm newbie here... 😉
Then perhaps you will find this informative: https://aws.amazon.com/compare/the-difference-between-sql-and-mysql/
January 8, 2024 at 10:45 am
sorry.. solved..
You've been here long enough to know the forum etiquette: please re-post your original question and its solution. This may come in useful to others.
January 8, 2024 at 9:40 am
First, please note that this is a SQL Server forum, not MySQL.
In T-SQL, I'd do something like this
DROP TABLE IF EXISTS #wp_um_metadata;
CREATE TABLE #wp_um_metadata
(
...
January 8, 2024 at 9:37 am
--Removed duplicate
January 7, 2024 at 9:19 am
Should I see this warning when I have ISNULL check at SUM function and changing NULLs to 0?
Thank you
No. As demonstrated below.
DROP TABLE IF EXISTS #x;
CREATE...
January 7, 2024 at 9:19 am
This will be easier to answer if you provide the DDL for the underlying table, including PK and Index definitions. If the query really is as simple as you suggest,...
January 2, 2024 at 11:36 am
This issue happening in prod environment ,but not in staging and local development environment, is there any setting for clearing tempdb cache of sql server
Possibly because the prod environment...
December 28, 2023 at 8:38 am
Viewing 15 posts - 661 through 675 (of 13,841 total)