Viewing 15 posts - 541 through 555 (of 2,694 total)
NVARCHAR is not needed for french characters, neither is a french collation (which does affect ordering but not much more). but SSIS being very picky will require NVARCHAR on destination...
May 23, 2023 at 2:37 pm
that has to do with what the encoding of the files are, the encoding defined on your SSIS package file definition (and potentially on any transforms you may have on...
May 23, 2023 at 12:28 pm
Hello and thanks in advance if you can help.
I guess its somewhat acceptable in dimensional modeling to use the INT data type when creating a date dimension surrogate key....
May 22, 2023 at 5:43 pm
quoting just to keep original text - reporting original due to spam signature links
simple script in Python that can be used to de-identify data by replacing sensitive information with...
May 20, 2023 at 10:21 am
it would help if you stated working hours time zone. including core hours for team availability. that may push some not to be interested at all.
May 18, 2023 at 6:46 am
and other results from google https://www.google.com/search?q=Error+installing+SQL+Server+Writer+Component+Could+not+write+value+NT+SERVICE%5CSQLWriter+to+key&sourceid=chrome&ie=UTF-8
May 17, 2023 at 1:56 pm
but this leads to the question - why do you need to remove them? they are valid characters and if the output is being displayed anywhere for users removing those...
May 17, 2023 at 1:43 pm
as a start I would look at AV on that server - it may be scanning things that were excluded on prior server.
different powershell versions may also cause issues -...
May 16, 2023 at 8:50 pm
What is the business case here for replication? HADR? Readable copies for reporting etc?
With replication, you can always start the subscriber from a backup, rather than doing a snapshot....
May 15, 2023 at 1:48 pm
you do need to have those 2 props to 1, and you also need a login setup if not mistaken.
and you need to ensure that the...
May 12, 2023 at 3:50 pm
you do it as part of the create table - or you specify every single field on your select.. into and on that you do a convert(decimal(19, 6), fieldx) as...
May 12, 2023 at 2:10 pm
issue you have is that your TotalAmount column is a decimal (18, 6) - the PIVOT sum then outputs this as decimal(38, 6) which takes 17 bytes each.
so 597 *...
May 12, 2023 at 12:15 pm
Jet is a 32 bit technology - won't work with newer versions of SQL (which are all 64 bit)
you need to use Microsoft ACE instead https://www.microsoft.com/pt-pt/download/details.aspx?id=50040
May 11, 2023 at 8:54 pm
May 11, 2023 at 2:21 pm
if not mistaken on this case the index spool is because your archive table is partitioned (on a column other than GSN_ID, most likely TNR_DATE) and SQL creates the spool...
May 10, 2023 at 8:28 am
Viewing 15 posts - 541 through 555 (of 2,694 total)