Viewing 15 posts - 1 through 15 (of 73 total)
Can you check Minimum & maximum memory settings on both the Instances. I had similar issues recently, memory setup was the issue.
October 10, 2019 at 1:03 am
More info.. from the DTC logs, I am seeing this
XACT_E_DUPLICATE_GUID
October 5, 2019 at 5:38 am
I got it resolved. This was the issue.
Minimum Server Memory was set to 0. Max memory was set to default value (large value) 214.......
OS was not getting enough memory, hence...
October 1, 2019 at 1:01 pm
It should be, since its just a XML file. You use .net c# script task to modify DTSConfig files, search for it - you will be able to find lot...
September 19, 2019 at 11:13 am
U can try exploring the CLR assemblies feature of SQL. However not recommended to keep modifying the DTSConfig files programatically. OR another (kind of dirty) way
Write a SSIS package use...
September 19, 2019 at 11:04 am
If ONLY procedures are in scope, you can use this
--Find a string in SPC
select * from sys.procedures where object_definition(object_id) like '%string%'
Run it in each of the DB's manually or automate...
September 17, 2019 at 3:53 am
If you want it in one single query, something like this..
Works for your sample cases, test for few more
select
fn.widget_id,
max(final.person_id) as person_id
from
#test fn
left join
(
select main.*
from
(
select min(t.rn) as rn,t.id as id,t.amount as...
September 7, 2019 at 5:59 am
I did the setup for All execution report.. I am getting 'UnExpected Termination' & there is no OnError events fired...
September 3, 2019 at 2:49 am
I think it's just a misleading error from SQL dump, can it be ?.
More info - Package works fine when running from Visual studio. Only on the server when we...
September 2, 2019 at 5:56 am
OLEDB Provider for SQL -- does this work with provider 'MSOLEDBSQL.1' ?
August 31, 2019 at 8:38 am
Dear All,
For everyone. We resolved this issue by installing oraMTS service. To check if it's installed. Go to services.msc and check oraMTS Recovery service is running.
After Installation, make sure to...
August 22, 2019 at 3:13 am
Thanks a lot, we found this was missing in our SQL-2014 box. We are trying to Install the OraMTS component.
August 20, 2019 at 12:02 am
Dear All,
Thanks for all the Inputs. When I turned ON 'Legacy Cardinality Estimation', the same query got executed in 6-7 seconds.
With OFF, it takes over 2 minutes.
So I will review...
August 16, 2019 at 1:54 pm
Yes, this is the only code.. Could this be SQL Management studio issue as well ?.
FYI.. & DB is SQL Server 2016 Developer Edition
Microsoft SQL Server Management Studio 14.0.17119.0
Microsoft Analysis...
August 16, 2019 at 1:41 pm
Viewing 15 posts - 1 through 15 (of 73 total)