Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
The following is the SQL Server 2005 query:
select
UPPER (AddressLine1)from
Person. Address
But How can i convert this query into Qlikview?
Best Regards,
Khalid
Hello, KHalid.
LOAD
Upper(AddressLine1) as AddressLine
;
sql select
AddressLine1
from
Person.Address
SQL Error:[Microsoft][SQL Native Client]Dialog failed
SQL State:IM008
select UPPER (AddressLine1)
from Person.Address
Try like this:
Upper(AddressLine1) as AddressLine
Khalid11 wrote:
SQL Error:[Microsoft][SQL Native Client]Dialog failed
SQL State:IM008
select UPPER (AddressLine1)
from Person.Address<div></div>
Please have another look at how Anatoly wrote the expression. See how the upper(AddressLine1) as AddressLine is done in the LOAD statement, not in the SQL statement? You appear to still be doing it in the SQL statement. If so, that is why you are getting an error. You need to do it in the LOAD statement instead.