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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Mapping Load and Applymap error

Cannot open file 'C:\Users\User\Desktop\Northwind.dbo.Customers' The system cannot find the file specified.

Customers:
MAPPING LOAD
CustomerID,
CompanyName
FROM Northwind.dbo.Customers

Hi All,

I am getting above error. Please help.


Customers:
MAPPING LOAD
CustomerID,
CompanyName
FROM Northwind.dbo.Customers;

Orders:
LOAD *,
ApplyMap('Customers', CustomerID, 'N/A') AS CompanyName
FROM Northwind.dbo.Orders;

EXIT Script;




3 Replies
Anonymous
Not applicable
Author

There might be a problem with the connection string.

robert_mika
Master III
Master III

Go to this Folder

C:\Users\User\Desktop\Northwind.dbo.Customers


and check if your database is still there.

jonathandienst
Partner - Champion III
Partner - Champion III

Hi

I think you are missing the connection string to the Northwind database, so QV is assuming this is a file. Also, you will need a SQL SELECT rather than just a LOAD to retrieve data from a database.

HTH

Jonathan

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein