-
Notifications
You must be signed in to change notification settings - Fork 681
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
How to describe/Show table in U-SQL? #126
Comments
U-SQL has a full set of catalog views, e.g., usql.tables etc. The documentation on http://aka.ms/usql_reference contains examples etc. |
The requirement has changed a bit. Instead of table we need Views. So finally we want columns and datatypes of a view not table. Can you please help to achieve this? |
Views is a bit harder since we currently only track their names and definition in the catalog views. The schema is inferred from the query at compile time, since the view is bound late during inlining and compilation and is not guaranteed to be the same as when the view was defined. Can you please file a feature request at http://aka.ms/adlfeedback for supporting at least the option? |
Thanks a lot for your help Mike. I will file a request in the above shared link. |
Thanks... Please close the issue once you filed or upvoted the request. |
I have a requirement to pull the table schema information using U-SQL. Like the columns in table and datatype. How can I achieve this?
The text was updated successfully, but these errors were encountered: