Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
berndjaegle
Creator II
Creator II

Export Section Access to QVD

How can I Export Section Access Table to a qvd?

Thnx,

Bernd

1 Solution

Accepted Solutions
berndjaegle
Creator II
Creator II
Author

Following works for me:

Create Tmp Table with Section Access Information.

Export table as QVD(!) and reload the QVD with "where 1=1"

tmp_SectionAccess:

LOAD * INLINE [
     ACCESS, USERID, PASSWORD, NTNAME

     ADMIN, admin, 1234, *
     USER, user, , *    

     USER, test, test, MS\SCOTT];

tmp_SectionAccess into TmpSectionAccess.qvd (qvd);

drop Table tmp_SectionAccess ;

SECTION Access;
   LOAD
    
ACCESS,
    
USERID,
    
PASSWORD,
    
NTNAME
FROM
Tmp_SectionAccess.qvd (
qvd)
WHERE 1=1;

View solution in original post

3 Replies
marcus_sommer

Couldn't you simply use:

store SectionAccess into SectionAccess.qvd (qvd);

- Marcus

berndjaegle
Creator II
Creator II
Author

2016-08-12 11_43_15-Script Execution Progress.png

was not successful.

berndjaegle
Creator II
Creator II
Author

Following works for me:

Create Tmp Table with Section Access Information.

Export table as QVD(!) and reload the QVD with "where 1=1"

tmp_SectionAccess:

LOAD * INLINE [
     ACCESS, USERID, PASSWORD, NTNAME

     ADMIN, admin, 1234, *
     USER, user, , *    

     USER, test, test, MS\SCOTT];

tmp_SectionAccess into TmpSectionAccess.qvd (qvd);

drop Table tmp_SectionAccess ;

SECTION Access;
   LOAD
    
ACCESS,
    
USERID,
    
PASSWORD,
    
NTNAME
FROM
Tmp_SectionAccess.qvd (
qvd)
WHERE 1=1;