Hi community,
for a couple of tables I use additional SQL indexes for performance reasons.
I noticed that the SQL ItemType allows us to specify custom indexes too and even contains a few for the most common used ItemTypes. Aras for example typically…
Community,
I have created a staging table capability that will be used to generate innovator eBOMs from Oracle manufacturing BOMs.
My challenge is working with 1.7 million rows of data in SQL Server.
I know I could create a SQL procedure to get…
Hello all,
After many attempts and support of Aras Support, we are still unable to execute SQL Stored Procedures on an external SQL database.
Context
Aras Innovator Version 26
SQL Server 2017
Goal
Execute a Stored Procedure on an external…
I am looking for the equivalent to select max(property) in IOM.
The below SQL query returns exactly what I want, but I understand that this should be used as a last resort and want to make sure I'm not missing something. select MAX(item_number) FROM…
Hi Team,
I am experiencing a serious problem with my one Aras instance. We are losing data in the system, it is just disappearing without a trace. The user would add data, and then checking the next day, it is gone, without a trace, not even in the…
Good day all,
I am trying to create a dynamic report to produce the time it take between starting an activity and ending an activity. I can get the information I am looking for by using SQL, but it will not limit the returns based on dates. I have tried…
Hi community,
I use an Innovator SQL procedure to get some data that is merged with a second database. The SQL procedure is called from a server Method
When I test the procedure in SQL, date properties like modified_on are shown as in correct regular…
I want to only have it pull a specific relationship (Part AML) if a custom date field "Valid To" is greater than the current date. I am able to create the Where that compares it against a specific date, but this query definition is pulled by another process…
Hi Community,
can anyone of you share some experience when using ItemTypes that contain a large number of items?
I have a Innovator ItemType that is intended to store up to 1-2 Million items for the start. For me this amount of data is already "a…
Good day all. This error just started with a couple of our reports. I have not made any updates to the RDL files, so I don't understand why this is occurring. Any help would be greatly appreciated. Thank you.
Hi community,
inside Innovator the "SQL" ItemTypes contains some Procedures, Functions and other things used for internal purposes:
It´s also possible to add own custom items. Common for example is the use of procedures that can be called e.g. this…
I want to display the results obtained by SQL in a TreeGridView, but I want to implement it. QueryBuilder does not allow me to achieve this. Can I display TGV trees? I want to narrow down my search by conditional branching.
Querying a SQL view I built in SSMS from an Aras server method:
string SQL_View = "innovator.my_custom_sql_view";
string SQL = "select * from " + SQL_View; Item SQL_qry = inn.applySQL(SQL);
This is quick for me because I do a lot in SQL, but I know…
Server Method : [Get_Identity_Details] Can run this and get results I want. Hard coded guid for test
Innovator inn = this.getInnovator(); string sessionuserid = this.getProperty("sessionuser","invalid"); if (sessionuserid == ""){}
StringBuilder sql…