You can use the SQL dbschema statement to get information about table structures, views, synonyms and UDRs. This article describes how to use the dbschema statement to get this information.
INTRODUCTION
You can use the SQL dbschema statement to get information about table structures, views, synonyms and UDRs.
You can use the SQL dbschema statement to get this information:
DBSCHEMA Schema Utility INFORMIX-SQL Version 7.31.UD6W9
Copyright (C) Informix Software, Inc., 1984-1998
Software Serial Number RDS#R123456
create synonym "informix".syn1 for stores7demo:"informix".customer;
DBSCHEMA Schema Utility INFORMIX-SQL Version 7.31.UD6W9
Copyright (C) Informix Software, Inc., 1984-1998
Software Serial Number RDS#R123456
create table "informix".grupo_oper
(
cod_gru_operat integer,
cod_operatoria integer
);
revoke all on "informix".grupo_oper from "public";
grant select on "informix".grupo_oper to "public" as "informix";
grant update on "informix".grupo_oper to "public" as "informix";
grant insert on "informix".grupo_oper to "public" as "informix";
grant delete on "informix".grupo_oper to "public" as "informix";
grant index on "informix".grupo_oper to "public" as "informix";
create procedure "informix".sgc_var_param_var( c char(30)) returning smallint;
-- created by valau
return 1;
end procedure;