Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Dear All,
Is there is any way to find out the path or QVW from a QVD..?
Rahul
Hi Rahul,
1)Open one test QVW.
2)Go in edit Script.
3)Those QVD Path you want open that QVD through the Table Files button.
4)Select QVD and Click on open button.
5)After the click the open button File Wizard window open.
6)There is different file type option
7)Choose the XML option.then Cret or Doc Field show you path and QVW name of QVD.
May be FilePath(), like:
FilePath() Returns a string containing the full path to the table file currently being read.
Example:
Load *, filepath( ) as X from
C:\UserFiles\abc.txt
Will return 'C:\UserFiles\abc.txt' in field X in each record read.
Hi,
You can retrieve the QVD path by using FilePath() in load script
LOAD
*,
FilePath() as Path
FROM DataSource.qvd (qvd);
Regards,.
Jagan.
Hi Rahul,
1)Open one test QVW.
2)Go in edit Script.
3)Those QVD Path you want open that QVD through the Table Files button.
4)Select QVD and Click on open button.
5)After the click the open button File Wizard window open.
6)There is different file type option
7)Choose the XML option.then Cret or Doc Field show you path and QVW name of QVD.
Thanks for reply... But sorry..= i explain my requirement... The problem is that I have many QVD files but I don't know the location of QVW where the logic are implemented for these qvds...
for any change i have to edit in qvw file...so plz tell me the way to find out the path of QVW from any QVD..
Rahul
Hi Rahul,
used the steps I have given because i have also same situation.
thanks...