Let’s talk Alteryx Copilot. Join the live AMA event to connect with the Alteryx team, ask questions, and hear how others are exploring what Copilot can do. Have Copilot questions? Ask here!
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