Viewing 15 posts - 211 through 225 (of 430 total)
The only difference is that in production the package is called from a SQL Agent job.
Are you deploying the project every time you update the string format in the...
August 8, 2022 at 4:24 pm
If you can't solve the problem with indexes or by using a partitioned heap, you can always switch the partition to an empty table and then truncate it. The table...
August 8, 2022 at 2:42 pm
Fast load with table lock will attempt to insert with minimal logging, but there are requirements of the destination table. I believe that even in a full recovery model the...
August 6, 2022 at 8:21 pm
Does it work when you run the procedure from SSMS? What error do get when it fails from SSIS? If the procedure has three parameters and the third one is...
August 4, 2022 at 9:36 pm
Never mind, my message was 3727, not 3737.
Is there a lock on the table? I got the same message number when I cancelled a drop constraint query which was waiting...
August 4, 2022 at 3:17 pm
This is pretty ugly. I didn't want to hard code the column names so used a dynamic sql output variable to get the list of ids to be updated. If...
August 4, 2022 at 2:58 pm
try this. or NUMERIC
TRY_CAST(MASTER_BOL_NUMBER AS INT)
ISNULL(TRY_CAST(MASTER_BOL_NUMBER AS INT),0)
August 4, 2022 at 12:41 am
Is this the output you want? I wrote a script to generate it, but it is ugly because I assumed the ID columns in the tables to be updated have...
August 3, 2022 at 6:10 pm
Are you trying to identify the stored procedure that should insert data into your empty table "auditLevyBreakdown"?
Does this return anything? I see the procedure names start with sp, is there...
August 3, 2022 at 3:19 pm
You said this expression is inside a Visible property of an object. So when the IIF expression returns True, the object is visible. When the IIF expression returns False,...
August 2, 2022 at 10:36 pm
I think that the Visibility property has three options, Show, Hide, or Expression. If an expression is used the result determines whether to hide the object, not whether to show...
August 2, 2022 at 7:29 pm
Can you CAST(ar.AR_STORE AS INT) to drop the preceding zeros and allow the join?
August 2, 2022 at 4:29 pm
What do you want the job to so if the SSIS package fails? You can set the properties of FailPackageOnFailure and FailParentOnFailure to false for all objects within the package....
August 2, 2022 at 2:53 pm
If the second table has a trigger that writes to itself, what would stop it running to infinity if it didn't error out at 32?
When the trigger does not generate...
August 1, 2022 at 4:00 pm
The easiest approach is a recursive cte. I tried to come up with a non recursive solution. I found one that works with this data, but it makes assumptions about...
July 29, 2022 at 10:20 pm
Viewing 15 posts - 211 through 225 (of 430 total)