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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
rafael5958
Creator
Creator

change password withou reload all data

Hi, I have this section im my qlikview app - Desktop:

Section Access;
LOAD * INLINE [
    ACCESS, USERID, PASSWORD, NTNAME
    ADMIN, mary, 1111,*
    ADMIN, john, 1234,*

];
Section Application;

How can I add or change an user/password without have to reload all my data again? Tried just save and exit but the new password didnt apply.

1 Solution

Accepted Solutions
rafael5958
Creator
Creator
Author

found it.

Using replace and partial reload.

Section Access;
replace LOAD * INLINE [
    ACCESS, USERID, PASSWORD, NTNAME
    ADMIN, mary, 1111,*
    ADMIN, john, 1234,*
    ADMIN, paul, 5555,*

];
Section Application;

View solution in original post

1 Reply
rafael5958
Creator
Creator
Author

found it.

Using replace and partial reload.

Section Access;
replace LOAD * INLINE [
    ACCESS, USERID, PASSWORD, NTNAME
    ADMIN, mary, 1111,*
    ADMIN, john, 1234,*
    ADMIN, paul, 5555,*

];
Section Application;