BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Ron_MacroMaven
Lapis Lazuli | Level 10

I am sure I know enough sql to be dangerous.

Can anyone offer an explanation as to why I cannot reorder the variables in the the sql dictionary.extfiles?

PROC sql; describe table dictionary.extfiles;

          select * from dictionary.extfiles;

          select   fileref,directory,temporary,xpath

            from   dictionary.extfiles

           order   by fileref;

          ******   fails;

          select   fileref,directory,exists,temporary,xpath

            from dictionary.extfiles;

          quit;

A quick perusal of the OnLineDoc finds there is a function named exists in the GTL: Graph Template Language.q

OpSys: Win XP 32

SAS v9.3

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

Yep, the reason is it is expecting exists to be used as a function.

A work around is use of a table alias:

proc sql;

select   fileref,directory, a.exists, temporary, xpath

            from dictionary.extfiles as a;

          quit;

SQL function Exists tests if a subquery returns one or more rows. So without the table identifier it expects EXISTS to be used as a function.

Probably wasn't the best idea to name a column in the dictionary table with that name.

View solution in original post

1 REPLY 1
ballardw
Super User

Yep, the reason is it is expecting exists to be used as a function.

A work around is use of a table alias:

proc sql;

select   fileref,directory, a.exists, temporary, xpath

            from dictionary.extfiles as a;

          quit;

SQL function Exists tests if a subquery returns one or more rows. So without the table identifier it expects EXISTS to be used as a function.

Probably wasn't the best idea to name a column in the dictionary table with that name.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 1086 views
  • 1 like
  • 2 in conversation