cd - To use in the command line
%cd% - To use in the scripts
str = get_instal_path_org;
res = str.replace(/\//g, "\\");;
LINUX Command to connect AWS using KEYS,
export AWS_ACCESS_KEY_ID=AKIAAAAUQG7QC2O4KS6NKGSM;
export AWS_SECRET_ACCESS_KEY=I1DCBC3nwsRcV8+aoXl0c/PX4iFsTJMr1aZ8EzIDKGSMS;
aws s3 ls s3://kgsm/active/
s3://kgsm/raw
s3://kgsm/active
WINDOWS Command to connect AWS using KEYS,
setx AWS_ACCESS_KEY_ID AKIAV7UQG7Q7C2O4KS6NKGSM
setx AWS_SECRET_ACCESS_KEY I1DCBC3nwsRcV8+aoXl0c/PX4iFsTJMr1aZ8EzIDKGSMS
setx AWS_DEFAULT_REGION us-east-1
aws s3 ls s3://kgsm/active/
WINDOWS Command to CREATE NEW FOLDER IN AWS and UPLOAD THE FILE
aws s3 cp F:\run.bat s3://kgsm/active/a1/
CREATE TABLE adempiere.license_tomato_app
(
customerid integer,
name text COLLATE pg_catalog."default",
location text COLLATE pg_catalog."default",
key text COLLATE pg_catalog."default" DEFAULT upper(substr(md5((random())::text), 0, 50)),
plan text COLLATE pg_catalog."default",
license_start_date timestamp without time zone,
license_end_date timestamp without time zone,
last_sync_data_time timestamp without time zone,
industry_type character varying(50) COLLATE pg_catalog."default",
business_name character varying(50) COLLATE pg_catalog."default",
isactive integer DEFAULT 1,
created_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
updated_at timestamp without time zone,
created_by integer,
updated_by integer
)
WITH (
OIDS = FALSE
)
TABLESPACE pg_default;
Models are where your developers spend most of their time within a dbt environment. Models are primarily written as a select statement and ...