Viewing 15 posts - 61 through 75 (of 2,690 total)
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
if the file is a proper CSV file with the each column value enclosed in double quotes (and inside double quotes proper escaped) then you just need to define the...
June 5, 2025 at 11:02 am
- Your LEFT JOIN will be interpreted as INNER due to right table condition present in WHERE (fs.ValidFrom
the OP sql does NOT have a where clause - its only...
May 20, 2025 at 10:16 pm
https://www.sqlservercentral.com/forums/topic/sustainable-procurement-best-practices-for-esg-driven-supply-chains-4 looks like AI generated with the sole purpose of being an advertising post of the "Zycus " software/company - and those commenting on it look just like bots created...
May 18, 2025 at 9:28 pm
Express is free, but no SSIS/SSRS with this. I don't think there are free replacements for them
I might aim for a VM in the cloud I can shut down....
May 8, 2025 at 8:57 am
import wizard is 32 bit if you execute immediately - if you schedule to run on server it will execute the package on the server in 64bit mode by default.
VS...
May 2, 2025 at 6:53 pm
you need to select it - from your image while it is available, it is not selected hence it won't log
April 28, 2025 at 9:22 am
Viewing 15 posts - 61 through 75 (of 2,690 total)