Viewing 15 posts - 16 through 30 (of 2,653 total)
you need to install the integration services component for you VS version.
for 2019 is on https://marketplace.visualstudio.com/items?itemName=SSIS.SqlServerIntegrationServicesProjects
July 17, 2025 at 7:41 am
I'm not going to comment on whether to remove db from HA or not - others with more experience on that will likely comment. But if you have a good...
July 16, 2025 at 10:04 am
as soon as you put anything outside the Database itself, you loose all referencing capabilities.
SQL Server Agent jobs in my opinion the worst option, specially if they go with 1...
July 15, 2025 at 2:29 pm
AI and promotion of company - should be removed
July 11, 2025 at 11:24 am
never seen it not work - but batch mode NOT always the best option.
Always test before and after with real production data volumes.
July 1, 2025 at 10:05 am
no way - while a clustered index on the desired columns will in many cases output the data on that order, there are cases where it won't.
if you have issues...
June 30, 2025 at 9:41 pm
using a hex editor see what is the true row delimiter.
\r\n is one, but it can also be \r or \n on their own. (you can also try each one...
June 30, 2025 at 6:25 pm
there is a trick.
create a temp table #dummy - 1 column with the same datatype/size of one of the tables used on your main select.
create a clustered columnstore index on...
June 30, 2025 at 10:49 am
create a view over that table without the identity column - then insert into the view instead of the table and see if result is what you wish for.
Ken solution...
June 30, 2025 at 7:30 am
what Ant said - while you can go with multiple vm's with small footprint those will also reduce IOPS considerably - so a higher vm (Azure constrained cpu for example...
June 12, 2025 at 9:55 am
there is something you can try which makes a HUGE difference on such transfers.
don't transfer directly to the final table - transfer to a staging table (#temp or just normal...
June 9, 2025 at 8:47 pm
well. taking in consideration the OP mentioned that this is a tab delimited file, and is complaining about CR on middle of a text, then what I said applies -...
June 9, 2025 at 6:14 pm
it is a sign that your process likely should be changed as you said - high volumes like this are in most cases best dealt by pushing the lookup data...
June 9, 2025 at 2:57 pm
ensure the file is a correctly built CSV file - if it is then you can load it using the format=CSV above - if it not then get whoever generates...
June 9, 2025 at 2:48 pm
Viewing 15 posts - 16 through 30 (of 2,653 total)