Viewing 15 posts - 16 through 30 (of 2,651 total)
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
if the file is a valid CSV file, then use the FORMAT=CSV and it will load that record correctly - example you have above is not using the format keyword...
June 9, 2025 at 2:47 pm
I'm going to repeat what I said above.
using SSIS (or any other tool that deals with correctly built CSV files) having a cr, lf or field delimiter within the contents...
June 9, 2025 at 2:43 pm
Viewing 15 posts - 16 through 30 (of 2,651 total)