Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Gabage Value

Hi,

I am new to quiview and self learning.  I searched many discussions, but was couldn't correct my issue, could you please help me on this.

I am loading Data from qvd file which is present in one of the location of my system, using below script.

QvdLoad:

LOAD [Emp-id],

     [Emp-Name],

     Salary

FROM C:\qvdex.qvd (qvd);

It is working fine. I was able to run script and load data into dashboard. 

Problem:

If I have a new line after the script, I am getting Garbage after statement. Please see attached.

- Thanks for your time.

1 Solution

Accepted Solutions
m_woolf
Master II
Master II

I'm guessing that it is because of your use of apostrophes in the path.

View solution in original post

3 Replies
m_woolf
Master II
Master II

I'm guessing that it is because of your use of apostrophes in the path.

kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Try loading your data in below format

QvdLoad:

LOAD [Emp-id],

    [Emp-Name],

    Salary

FROM (qvd);

Cover the path with Square Brackets.

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
Not applicable
Author

You have single quote on the path. You should have enclosed path into square brackets

LOAD

     *

FROM (qvd) ;