Hello ,
is there a way to find the layers name that has only attribute names but all attributes name has completely no data inside it
source data :oracle non spatial
FME 2021
Thanks in advance
Hello ,
is there a way to find the layers name that has only attribute names but all attributes name has completely no data inside it
source data :oracle non spatial
FME 2021
Thanks in advance
My preferred method would be as follows:
select count(1) as MY_TABLE_COUNT
from @Value(fme_feature_type_name)
This will avoid reading any data into FME, which is very efficient especially if there are tables with a lot of data among the empty ones.
You'll find it on the schema feature, it's not necessary to expose it manually (note that the name is lower case):
Make sure to configure the FeatureReader to only read the schema features, and not to include the table contents:
You'll find it on the schema feature, it's not necessary to expose it manually (note that the name is lower case):
Make sure to configure the FeatureReader to only read the schema features, and not to include the table contents:
Thanks a lot