I need to manage changes to several SQL tables, they can all go into a single or many log files.
Is there a way to do this within the SQL environment?
We are using an accounting system and the new reporting requirements are to report any changes to key tables. There is nothing in the software to...
I need to create a .csv file grouped by Account, Ccentre with 14 columns, OBAL, JAN, FEB, etc to CBAL.
I have existing views to get the data into the individual parts, the following is for JAN:
SELECT SUBSTRING(GL06001, 1, 4) AS Account, SUBSTRING(GL06001, 5, 4) AS Ccentre, GL06004 AS JAN...
I need to add data from 2 tables, Country1 and Country2, the layout is exactly the same in both tables.
In Access you can use the UNION_ALL (or UNION for a non-dup)but UNION is not supported in a View.
The end result is using Crystal Reports to do the summation on a single table/view.
Is...