UiPath - Unable to Insert ServiceNow Table Record: System.AggregateException - servicenow

I am trying to automate via UiPath the insertion of data into a ServiceNow table.
I am following the step by step link
(https://connect.uipath.com/marketplace/components/servicenow-v1/media)
to automate the insertion.
However when running my project I get the following error:
I made and tested the connection with my instance normally, but this error occurs during the project run …
Can you help me?

Related

Power Automate not showing all columns from SQL

I have created a Power Automate flow which is running fine. It connects to SQL Server using on-premise data gateway, gets the records from a table using GetRows action and put the response on a file hosted on SharePoint. But there is one problem. It seems a date field is missing from response, even it exists in the table. Have any idea how to fix this?

bpf error after upgrade crm dynamics to on prem 9.0.5

after successfully upgrade to dynamics from 2016 8.1 to 9.0.5 on prem,
we encountered a problem with business process flow,
as we know each bpf has its own entity in the DB,
we use an OOB bpf in incident entity that called phonetocaseprocess,
the problem is that i saw after the upgrade that the newly table created for
that bpf - is empty :() , so all the current incidents failed on update because
i get an error that said that : phonetocaseprocess With Id = 196dc1e2-466f-e911-80e6-
00155dc4022d Does Not Exist.
when i create a new incident record it works fine and a record is created in
phonetocaseproccess table.
someone encountered that? or have an idea? thank you
UPDATE
we were able to resolve this by running the script provided in the above forum before the upgrade run, after this the upgrade was successfully completed.
https://community.dynamics.com/crm/f/microsoft-dynamics-crm-forum/232669/business-process-flow-instance-exists-error-after-crm-2016-upgrade/639024
The problem occurred because processes in the source environment did not have a unique name in the database, which resulted in the upgrade not converting the data to the correct table in the DB but to another table in new_bpf_guid format.
hope this will help someone
That's because your existing records are related to the older process and that the process in the newer version has different GUID. See the snapshot below:
To correct this, you have to migrate the process entity data with the existing primary keys in the older version.

SSIS project not working when reading from Oracle

I've been trying to create an SSIS project to read from an Oracle 11.x database to an SQL Server database.
When I set this up in Visual Studio 10 Shell, I do not receive any logs . It gives me a successful message but nothing happens.
I tried to connect to an Oracle 12c database and the same happened.
I tried to get data from an Oracle 11.x project and dump it into an excel file. I also tried to get data from an Oracle 11.x table and dump it into a new Oracle 11.x table (in the same database) and in both cases I got the following error:
> TITLE: Microsoft Visual Studio
Failed to start project
------------------------------ ADDITIONAL INFORMATION:
Exception deserializing the package "The package failed to load due to
error 0xC0011008 "Error loading from XML. No further detailed error
information can be specified for this problem because no Events object
was passed where detailed error information can be stored.". This
occurs when CPackage::LoadFromXML fails. ".
(Microsoft.DataTransformationServices.VsIntegration)
The package failed to load due to error 0xC0011008 "Error loading from
XML. No further detailed error information can be specified for this
problem because no Events object was passed where detailed error
information can be stored.". This occurs when CPackage::LoadFromXML
fails. (Package)
------------------------------ BUTTONS:
OK
Can anyone help me please?
Thank you
You haven't posted how you are trying to get data from oracle exactly so can say much about the error. I can only give my solution in 2008 r2:
create an oracle linked server in your sql server and then use an open query in the SSIS package to pull anything you need

jaspersoft reporting error user lacks privilege or object not found

My first attempt at JasperSoft Reports, community edition.Installed the necessary plugin to get it to work in Spring Tool Suite. Created a new report project and added the data adapter to connect to a sql database and the connection worked fine. Then tried to create a new report and select a datasource and design a query. This is where the error is produced:
user lacks privilege or object not found:
and the object in this case happens to be the DB table. I have been unable to retrieve any solution online and hoping someone can direct me here.
Appreciate your response.

SonarQube upgrade fails from v5.1 to v5.2

I am trying to upgrade SonarQube v5.1 to v5.2 and it fails with below error:
ERROR web[o.s.s.d.m.DatabaseMigrator] Fail to execute database migration: org.sonar.db.version.v52.RemoveDuplicatedComponentKeys
java.lang.IllegalStateException: Error during processing of row:..................................................................
Caused by: java.sql.SQLException: Streaming result set com.mysql.jdbc.RowDataDynamic#7f872fa8 is still active. No statements may be issued when any streaming result sets are open and in use on a given connection. Ensure that you have called .close() on any active streaming result sets before attempting more queries.
2015.11.05 09:08:32 INFO web[o.s.s.d.m.PlatformDatabaseMigration] DB migration failed | time=6911ms
2015.11.05 09:08:32 ERROR web[o.s.s.d.m.PlatformDatabaseMigration] DB Migration or container restart failed. Process ended with an exception
org.jruby.exceptions.RaiseException: (StandardError) An error has occurred, all later migrations canceled:
Fail to execute database migration: org.sonar.db.version.v52.RemoveDuplicatedComponentKeys
I found a workaround. I've deleted the duplicated projects from the projects table and then restarted the migration process.
To get an idea what is going on, execute the following query on your database:
select p.kee, COUNT(p.kee) FROM projects p GROUP BY p.kee HAVING COUNT(p.kee) > 1;
If you this query returns any elements you have to remove duplicated ones (e.g. the oldest ones). In my case it was easy because I had no isseues in the issue table related to projects in question.
I you have to mimic the SonarQube 5.2 migration procedure step by step (deleting duplicated projects and updating issues for them) you can find a list of queries being executed during the migration step on Github.

Resources