Get Inspire insights from former attendees in our AMA discussion thread on Inspire Buzz. ACEs and other community members are on call all week to answer!

Alteryx Designer Desktop Discussions

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

How can we run a query that has Transact-SQL syntax

ascanlan
5 - Atom

I am trying to find a way to run a MS SQL server query that has Transact-SQL syntax (Use, Go). Can Alteryx handle this type of query?

 

Example:

Use NCI Go
SELECT
[customer] as customer
,[address] as address
FROM [NCI].[database].[table]

 

1 REPLY 1
danilang
19 - Altair
19 - Altair

Hi @ascanlan 

 

You should be able to remove the GO statements if you end each line with a semi colon. 

 

Use NCI;
SELECT
[customer] as customer
,[address] as address
FROM [NCI].[database].[table];

 

In your case though, you don't need the Use NCI directive, since you have [NCI] in the fully qualified table name; [NCI].[database].[table]

 

Dan

 

  

Labels