Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2023 04:55 AM
Hi @Sujatha Pillai
You can try using the below SQL code using widgets
CREATE WIDGET TEXT pathname DEFAULT "pathvalue"
CREATE OR REPLACE TEMPORARY VIEW abc_delivery_log
USING CSV
OPTIONS (
header="true",
delimiter=",",
inferSchema="true",
path = getArgument('pathname')
);and using widgets you can pass the variable value
Happy Learning!!
Thanks for reading and like if this is useful and for improvements or feedback please comment.