Bring your best ideas to the AI Use Case Contest! Enter to win 40 hours of expert engineering support and bring your vision to life using the powerful combination of Alteryx + AI. Learn more now, or go straight to the submission form.
Start Free Trial

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.

too many dots in table name error

Joseph_Peterson
6 - Meteoroid

Hello, I am trying to create a table in a query fabric database. I have successfully connected to it and have access to all of the databases and schemas.

 

I am trying to use this as a test: 

 

create table user_space.dx_dl_qf_nedvfcollections.T_TEST as

(select * from DX.JRNL_CSG_PII.SBB_BASE limit 10) 

 

This query works when I run it in dbeaver or toad, but Alteryx throws this error:

 

Joseph_Peterson_0-1753899480245.png

 

I only have dots separating the database and schema, so I am not sure why i am getting this error.

 

Any help would be greatly appreciated!

 

2 REPLIES 2
Gaurav_Dhama_
12 - Quasar

Once you have connection to the database, i don’t think you need to mention the database again in the query.

Try using just the table name, and if schema isn’t selected, maybe just use the schema along with name.

 

i am currently on phone, so cannot validate it. But do let us know if this didn’t help.

binuacs
21 - Polaris

@Joseph_Peterson may try to use the double quotes

CREATE TABLE user_space.dx_dl_qf_nedvfcollections.t_test AS
SELECT * FROM "DX"."JRNL_CSG_PII"."SBB_BASE" LIMIT 10;

 

Labels
Top Solution Authors