Viewing 15 posts - 166 through 180 (of 2,568 total)
regardless - check every server that is part of that AG and ensure that only the 64 bit version of the driver is installed.
use script from https://www.powershellgallery.com/packages/LegacyData/3.2.0/Content/Public%5CGet-InstalledDatabaseDriverList.ps1
can be...
March 20, 2024 at 1:52 pm
this looks like a failover issue where the servers installed version isn't the same - one has a 32 bit version and the other a 64bit version.
I would check this.
March 19, 2024 at 5:49 pm
Hi All,
How important is it archiving old data ? In recent days, We saw some timeouts and blockings happening for app API calls to the database. Later, found that...
March 19, 2024 at 4:19 pm
Appreciate the replies!
The script I used most recently is this:
declare @period varchar(10) = '2024MAR'
declare @innerCommand varchar(500) = 'select * from FACT_GL_ACTUALS where TRX_PERIOD = ''''' +...
March 19, 2024 at 3:17 pm
Thanks all...
I tried using a dynamically generated openquery statement and, while it's not as fast as I was hoping, it's definitely a lot faster than before. Going to try...
March 18, 2024 at 6:33 pm
based on what you said I STRONGLY recommend that you change the process to use either a ETL tool (SSIS or plain C#- SSIS will likely be the slowest -...
March 15, 2024 at 8:36 pm
you saying that "select * from remoteoracle where a = b" is slow?
or is it when you are joining to local tables (big NO NO).
but regardless - access to remote...
March 15, 2024 at 1:24 pm
BSEG is a heap - why don't you have a Clustered index on it?
and reason for not using any of the other indexes may also be related to not having...
March 14, 2024 at 2:59 pm
I would consider this a duplicate post - and as mentioned on the other ones you are the one that needs to figure out what your SSIs package does and...
March 14, 2024 at 11:33 am
you said " DB is set to read committed" - does this mean your db has Read Committed Snapshot Isolation on? if so this is likely why.
March 14, 2024 at 11:28 am
you have already been given some answers on your original post - https://www.sqlservercentral.com/forums/topic/eliminating-csv-conversion-step
with regards to the errors, they are standard SSIS errors, which you can both read manuals...
March 14, 2024 at 8:50 am
so you are asking us to do your work for free?
one thing is to help with particular issues or problems. Error you may get with code for example.
But this is...
March 13, 2024 at 7:54 pm
easy - would help if you had created a script task (as instructed on the link) instead of a script component.
so do it correctly - script component does NOT allow...
March 13, 2024 at 6:09 pm
in addition to what Phil supplied - which may mislead you into thinking you can set it up to bypass this particular issue.
SSIS catalog DOES NOT allow for double hop...
March 13, 2024 at 3:10 pm
and as I said on my prior post - it will not work like that as it is a double hop situation - only way for this execution to work...
March 13, 2024 at 2:44 pm
Viewing 15 posts - 166 through 180 (of 2,568 total)