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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
carlos13
Creator
Creator

security y qvd

I can not assign my safety from a QVD

How I can do? try to do this:

Section Access;

Directory;

LOAD [USERID],

    [PASSWORD],

    [ACCESS],

    COD_MATRIZ_COMPANIA,

    VIP

FROM

TB_SEGURIDAD.qvd

(qvd);

Section Application;

Star is *;

and does not work

3 Replies
Not applicable

Carlos13, Exists TB_SEGURIDAD:qvd?

However, try to do this: "Directory:" replace it to "Directory;"

Section Access;

Directory:

     LOAD [USERID],    

     [PASSWORD],    

     [ACCESS],    

     COD_MATRIZ_COMPANIA,    

     VIP

FROM TB_SEGURIDAD.qvd (qvd);

Section Application;

Star is *;

Regards.

carlos13
Creator
Creator
Author

thanks,

Are "Directory;" from the beginning and does not work

Not applicable

Seguridad:

LOAD Upper(Trim([ACCESS])) AS ACCESS,

    USERID,

    PASSWORD

FROM

(biff, embedded labels, table is Hoja1$);

STORE Seguridad into Seguridad.qvd (qvd);

drop Table Seguridad;

STAR IS *;

Section Access;

load

ACCESS,

USERID,

PASSWORD

from Seguridad.qvd (qvd)

Where 1=1;

SECTION Application;