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

No schema information in Visual Query Builder?

JohnJPS
15 - Aurora

We're using integrated authentication when connecting to various data assets in SQL Server; in one case a user has nothing displaying in her Visual Query Builder. Any ideas what sort of permission is lacking that would result in this, (assuming it's permissions related)?  We are on 10.1.6.11313.

 

VisualQueryBuilder.PNG

2 REPLIES 2
jdunkerley79
ACE Emeritus
ACE Emeritus

Can you see the schema if you connect in SQL Server Management Studio?

 

You probably to GRANT access to View Definition on the database

s_pichaipillai
12 - Quasar

Connect to SSMS and run the below code

Use yourdatabasename

go

SELECT * FROM fn_my_permissions (NULL, 'DATABASE')

 

this iwill list the permission of the currently logged in user

Labels