in the GTP3 Database GTP3.zip (3.6 MB)
i have two tables employees and department , eachof the tables have 100000 rows of data and i have perfomed three query
1:- “SELECT EMP_ID, NAME, Department_Name FROM employees INNER JOIN department
ON employees.ID = department.EMP_ID;”
2:- “SELECT EMP_ID, NAME, Department_Name FROM employees LEFT OUTER JOIN department
ON employees.ID = department.EMP_ID;”
3:- “SELECT EMP_ID, Name, Department_Name FROM Employees CROSS JOIN department;”
now the first two query get debugged and when the third was being executed (the cross join query) i got this error
System.Exception: Job stopped with an unexpected exit code: 0xE0434352
the activity that i have used for performing the sqlite query is “Execute query” from the pakage that i have mentioned above
YES the number of records is itself the issue , currently it has 100k records and getting the issue on it
but when i tried it with 1k it work butter smooth fast and executed properly