Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

'/' in column name?

Hello Guys,

I am stuck in a scenario,where column name of my sql table is like 'temp/test' and I am qlikview showing showing error that "temp field in not found" on reload.How we can handle this situation in load.Thanks in advance.

Labels (1)
1 Solution

Accepted Solutions
hic
Former Employee
Former Employee

You need to quote the field names, either with [ ] or with " " .

SQL SELECT [temp/test] FROM ...

SQL SELECT "temp/test" FROM ...

HIC

View solution in original post

3 Replies
MK_QSL
MVP
MVP

SELECT REPLACE('temp/test','/','-');

hic
Former Employee
Former Employee

You need to quote the field names, either with [ ] or with " " .

SQL SELECT [temp/test] FROM ...

SQL SELECT "temp/test" FROM ...

HIC

Not applicable
Author

Thank you guys.