Viewing 15 posts - 16 through 30 (of 6,647 total)
The GUI - by default - performs a tail-log backup of the existing database when you perform a restore over that existing database. If you do not uncheck the box...
October 14, 2024 at 7:23 pm
Yes - you definitely need to be using precedence constraints between tasks.
October 8, 2024 at 7:12 pm
First of all, the warning was telling you that you have columns that you're doing aggregates like SUM() and COUNT() on contain some NULL values. Are you sure...
October 7, 2024 at 3:16 pm
This is probably an issue with *how* SQL Server is sending the query to the DB2 instance. As soon as you use that view - and either join to another...
September 26, 2024 at 4:45 pm
Thank you for the update - glad this worked for you.
FYI - my approach is to disable the non-clustered indexes and rebuild all indexes after the data loads. I only...
September 17, 2024 at 8:10 pm
my other peer ran the query select * from db1.dbo.view1. which worked and is the query he doesnt want to change in his app. we arent gurus but in...
September 17, 2024 at 7:58 pm
In the OLEDB Destination - in SSIS - you control the batch and commit sizes. If you leave those as default then all of the rows processed through the pipeline...
September 16, 2024 at 8:14 pm
If all you need is the last 4 from the card number - I would use this:
RIGHT(LEFT(s_Result, CHARINDEX('|', s_Result) - 1)), 4) AS last_four
No need to determine...
September 16, 2024 at 8:06 pm
thx, what if he puts a surrogate db on the new server called A. And it has a view that thru the linked server sends the correct query to...
September 9, 2024 at 9:46 pm
Another option is to take a backup - copy to new server and restore WITH NORECOVERY. Prior to cutover, perform a DIFFERENTIAL backup, copy the file to the new server...
September 4, 2024 at 4:52 pm
Just guessing - because you didn't actually provide any information on the issue. It seems you have a column that IS NOT NULL - but has some type of 'data'...
August 29, 2024 at 4:55 pm
That is only available in SQL Server 2022 or higher - and the OP is using SQL Server 2016.
The code provided...
August 23, 2024 at 9:42 pm
One of the reasons a package will be built to look back more than a single day is to cover any days where the package run is missed. On the...
August 5, 2024 at 9:52 pm
Another feature that I use is to create a folder of specific servers - then open a new query from that folder. It creates a query window connected to all...
August 2, 2024 at 8:08 pm
All, sorry for not replying to the thread. The secondary server has been offline since Saturday. I have a maintenance window tomorrow so the plan is to reseed via...
July 26, 2024 at 4:52 pm
Viewing 15 posts - 16 through 30 (of 6,647 total)