I have to generate a text file for an application to pick up. I have the query written, however cannot execute the query in the DTS package. Also tried creating a view, but i cannot find the view in the list of source data to go to text.
Here is my query:
select ('"' + p.wbs1 + '"'),('"' + p.name + '"'),('"' + p.ProjMgr + '"'),('"' + e.FirstName + ' ' + e.LastName + '"')
from pr as p inner join em as e on p.ProjMgr = e.Employee
where p.wbs2=' ' and p.status='A' and (p.chargetype='P' or p.chargetype='R')
order by p.name
The error I keep getting is:
The data pump task requires transformations to be specified.
How do i do this without having to create a new table and make 2 DTS packages?
Here is my query:
select ('"' + p.wbs1 + '"'),('"' + p.name + '"'),('"' + p.ProjMgr + '"'),('"' + e.FirstName + ' ' + e.LastName + '"')
from pr as p inner join em as e on p.ProjMgr = e.Employee
where p.wbs2=' ' and p.status='A' and (p.chargetype='P' or p.chargetype='R')
order by p.name
The error I keep getting is:
The data pump task requires transformations to be specified.
How do i do this without having to create a new table and make 2 DTS packages?