Integration Services
58 TopicsSSIS Debug Spawns 2 DtsDebugHost.exe and Freezes
Operating System: Windows 10 Enterprise Visual Studio: 2022 Enterprise (x64) Target SQL Server: SQL Server 2019 On many packages, running the package in debug mode (x64, ??) locks up the UI (windows message "Visual Studio is Busy"). Task Manager shows 2 instances of DtsDebugHost star C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\SSIS\150\Binn each with different -regas {guid} command lines. For packages where this doesn't happen only 1 is spawned. Killing the DtsDebugHost.exe packages frees up the Visual Studio GUI but ends the debug session. These packages do not use any 3rd party components.28Views0likes1CommentSSIS Packages (Randomly) Freeze on Breakpoint
TLDR: using Visual Studio 2022 and (latest) SSIS, packages freeze on breakpoint (if set) Since upgrading to VS 2022, many of my packages (including those w/out Scripting or any 3rd Party Components) freeze when they reach a debug breakpoint. I can't interact with the GUI, and the only solution is to kill VS in Task Explorer. The same package runs without issue without a breakpoint.30Views0likes1CommentError 0x80004005 during SSIS package execution with SSAS source
Hi. I've created a SSIS package utilizing a SSAS source (VS 2022 Developer Edition, SSAS 2019 15.0.35.48). I can confirm that I can connect to my SSAS source through OLE DB connector and run MDX queries: When I run the package, "Connection Test" step passes (it runs a simple MDX query against the SSAS source to ensure we can connect to source): But data flow task fails on OLE DB Source as follows: My problem is that there is nothing in error message which can help me where is the exact problem. I've seen many posts on this problem, but none of them has worked for me as each focus on a part of error message following the above message, which doesn't exist in my case (e.g. "Communication link failure" or "TCP Provider: The specified network name is no longer available"). Please help. Thanks in advance.Solved31Views0likes1CommentSSIS Odata source problem - No object exists with the ID 11.
Hey guys, I am currently facing a problem on my SSIS package and all your help would be very helpfull. Here is the scenario,I have a data flow with a Odata Source inside, here is the image bellow. I can confirm that the connection is working and the filter options are also working because I can view the data: Unfortunately when I run the package I get the following error: [SSIS.Pipeline] Erro: No object exists with the ID 11. [Fonte de Dados OData 1 [2]] Erro: The Fonte de Dados OData 1 was unable to process the data. Excepção de HRESULT: 0xC0047072 [SSIS.Pipeline] Erro: SSIS Error Code DTS_E_PRIMEOUTPUTFAILED. The PrimeOutput method on Fonte de Dados OData 1 returned error code 0xC02090F5. The component returned a failure code when the pipeline engine called PrimeOutput(). The meaning of the failure code is defined by the component, but the error is fatal and the pipeline stopped executing. There may be error messages posted before this with more information about the failure. There is nothing else on the data flow, I just cant understand what is going on. Appreciate all the help.559Views0likes2CommentsSQL Server Can't activate (GUID Should contain 32 digits with 4 dashes)
Hi Everyone, I'm new here and wanted to ask if anyone has encountered an error when activating a product key for SQL Server Standard 2024? If so, could you please share the solution you used to resolve the issue? Thank you.257Views0likes1CommentSimple import data and lookup
I want to import data from excel and update a table in sqlserver The excel file has a column and a pk to compare with DB table, and update db table column. I am able to get the data using excel source and now looking for how to update the database table one column IsValid using excel (header in excel is same as header in sql table and data is also same) data. Excel file and db table has primary key value as ID, if the ID from excel and DB matches I want to update the table data column isValid using excels isValid field Is it using look up we can do it or using merge ?152Views0likes0CommentsOra source table receives continuous transaction
I have a oracle source table in my ETL which is getting loaded 24/7 continuously, when I run the data load from this table to SQL server using SSIS ETL with table fast load. My package loads some data and it fails.If I stop the oracle source table from getting continuously loaded, my ETL pkg runs fine, I see this in dev env. But in real time on prod I cannot do this, why can't my pkg load and run with out failing. One more thing, I have SQL server target table, I pick up the max of last inserted data in SSIS variable and use it for querying incremental load from source oracle table. Table lock and check constraint in destination(SQL Server) oledb are ticked162Views0likes0CommentsERROR 4819
SQL Server: 2019 ERROR (4819) -" Cannot bulk load. The bulk data stream was incorrectly specified as sorted or the data violates a uniqueness constraint imposed by the target table. Sort order incorrect for the follow" We tested the exact same stored procedures on SQL2019 System A and everything worked as expected. But it gives errors when we test on the SQL SERVER 2019 System B. SQL Server A and SQL Server B are the same version, 2019 but something is causing these jobs to fail. I’m not sure what to do next. Any thoughts/suggestions would be greatly appreciated. Thanks.700Views0likes4CommentsUsing SSIS Expression to build query to run on Oracle source
I am trying to build a query to run on oracle source by putting it in a variable, I am pulling max of date into a variablevarChildpkgMaxDt(e.g.2024-08-10 17:21:04.670 ) from SQL server target table. I need to build a query to run on oracle source. I have used datetime as datatype forvarChildpkgMaxDt to fetch from sqlserver in parent pkg and passing this as a parameter to child pkg. I created avarCpkgQuery variable as string and coded as below, the out put I am getting date, will this be the right way to execute this query in oracle I am using oledb as source for oracle I also want to ensure that thevarChildpkgMaxDt is properly compared in oracle with NVL(REVIEWDATE,CREATED) as this two fields in oracle are date with time stamp up till 3mill sec (2024-08-10 17:21:04.670) "SELECT * FROM dbo.virDocument WHERE NVL(REVIEWDATE,CREATED) > '" + (DT_WSTR, 50)(DT_DBTIMESTAMP2,3) @[User::varChildPkgMaxDt] + "'" Was able to remove the err, and now with above change I am getting '2024-08-11 21:00:43.000' do I have to use to_date or to_char for oracle to consider this as date and compare it ? Using oracle 19 C source, VS 2017 SSDT & SQL Server 2016244Views0likes0CommentsAccess to Sql Server Migration
I am trying to come up with Access code that will allow a query to migrate to Sql Server. The current Access Sql is: SELECT Last(tblSecurityPrices.Price) AS LastOfPrice, tblSecurityPrices.Security, Last(tblSecurityPrices.PriceDate) AS LastOfPriceDate FROM tblSecurityPrices GROUP BY tblSecurityPrices.Security; I know very little about Sql Server. BobSolved617Views0likes1Comment