Viewing 15 posts - 31 through 45 (of 2,603 total)
BOM not worth it - files just should be consistent. throughout.
likely some files are manually created, and others through some utility - this is normally the case when I get...
December 17, 2024 at 3:10 pm
think you failed to understand what I intended.
when you create a flat file connection manager you should define it's encoding before opening the file so headers get populated correctly. doing...
December 17, 2024 at 12:55 am
that looks like a "UTF-8 with BOM" file being read as non unicode.
ensure you use the correct definition when defining the connector - and fix what generates the file not...
December 5, 2024 at 12:49 am
have a look at https://www.sqlshack.com/how-to-discover-and-handle-orphaned-database-users-in-sql-server/
December 4, 2024 at 10:09 am
and you also need to consider.
December 3, 2024 at 9:50 am
one way - other is to have the file as a valid SQL Server unicode file - there are quirks about it.
drop table if exists Test2
CREATE...
November 28, 2024 at 10:43 am
what does the SQL Logs say about licensing and allocated cores? Could be limited by license applied.
and what is the VM type - some config there may be wrong -...
November 24, 2024 at 7:55 pm
you can't do that as far as I know - if you do that deny then db_owner is required - but having the list of db's on SSMS does NOT...
November 16, 2024 at 9:28 pm
YES but merge join requires SORT operation
if you read my post and the link I gave you it states what you have to do to address that requirement.
November 13, 2024 at 8:34 am
if it is partitioned what matters is if it is has the partition operator on the plan or not - if it has then being partitioned is helping the query...
November 12, 2024 at 8:09 pm
best advise is DON'T use SSIS for this.
Load data from one of the db's into a staging (or even tempdb) and do the merge on the SQL server side.
if you...
November 12, 2024 at 7:59 am
why bother sometimes. basic sql stuff that should not need our help.
straight replace -
SET @FILEPATH = replace(@FILENAME, 'chartobereplaced_escapedifneeded', 'replacewith_escapedifneeded')
you can just try out until you get the replace correct -...
November 8, 2024 at 3:46 pm
If you look at the column headers of the file and compare them to the table, they don't match. We can't see your package to know what the mapping...
November 7, 2024 at 3:38 pm
this also looks like a possible execution of DTEXEC from the command line (instead of SSIS catalog/SSIS Execute step from sql agent) - and in this case its likely it...
October 29, 2024 at 2:18 pm
Viewing 15 posts - 31 through 45 (of 2,603 total)