Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
519d8953b5 | |||
14a616fc1b | |||
bfe5a8626f | |||
4ecd186e5c |
@ -1,3 +1,10 @@
|
||||
## [7.0.1](https://git.datacontroller.io/dc/dc/compare/v7.0.0...v7.0.1) (2025-06-11)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* refresh process ([4ecd186](https://git.datacontroller.io/dc/dc/commit/4ecd186e5cb22dd436f2d7f1200956f4e3f27425))
|
||||
|
||||
# [7.0.0](https://git.datacontroller.io/dc/dc/compare/v6.16.2...v7.0.0) (2025-06-11)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "dcfrontend",
|
||||
"version": "7.0.0",
|
||||
"version": "7.0.1",
|
||||
"description": "Data Controller",
|
||||
"devDependencies": {
|
||||
"@saithodev/semantic-release-gitea": "^2.1.0",
|
||||
|
@ -326,14 +326,20 @@ proc sql;
|
||||
,count(*) as table_cnt
|
||||
from statustabs
|
||||
group by 1;
|
||||
create table work.libs as
|
||||
select libref from work.sumcat
|
||||
union
|
||||
select libref from work.sumdsn;
|
||||
create table work.statuslibs as
|
||||
select coalesce(a.libref,b.libref) as libref,
|
||||
a.libsize,
|
||||
a.table_cnt,
|
||||
b.catalog_cnt
|
||||
from work.sumdsn a
|
||||
full join work.sumcat b
|
||||
on a.libref=b.libref;
|
||||
select a.libref,
|
||||
b.libsize,
|
||||
b.table_cnt,
|
||||
c.catalog_cnt
|
||||
from work.libs a
|
||||
left join work.sumdsn b
|
||||
on a.libref=b.libref
|
||||
left join work.sumcat c
|
||||
on a.libref=c.libref;
|
||||
|
||||
%bitemporal_dataloader(base_lib=&mpelib
|
||||
,base_dsn=mpe_datastatus_libs
|
||||
|
Reference in New Issue
Block a user