Viewing 15 posts - 91 through 105 (of 122 total)
You can change in Flat File Source Connection manager. Just Double click the connection manager you should be able to make the changes.
June 25, 2011 at 3:07 am
We Can Perform this operation by having more than one FST in Control Flow.In Each FST you can specify the destination Folder path and source file also.
I...
June 19, 2011 at 10:11 pm
Thanks it worked.
June 17, 2011 at 1:49 pm
When destination is excel. We need to make sure data type is always DT_WSTR
June 16, 2011 at 1:49 pm
Got it solved. Thanks,
June 14, 2011 at 2:59 am
why do you want to write script . It can be done easily using FileSystemtask.
June 12, 2011 at 1:24 pm
If you have real experience working with SSRS. You should answer all the questions 🙂
June 12, 2011 at 1:16 pm
Refer this URL. should help you great bit
http://www.simple-talk.com/sql/t-sql-programming/removing-duplicates-from-a-table-in-sql-server/
April 28, 2011 at 1:39 am
Please find the table structure as below
CREATE TABLE Contact
(
FirstName varchar(100),
MiddleName varchar(100),
LastName varchar(100),
ContactId int,
CONSTRAINT pk_Contact_pid PRIMARY KEY(ContactID)
)
April 1, 2011 at 1:40 am
Can be done using temp table for your reference
SELECT EmpID,EmpName INTO #temp
FROM Employees
GROUP BY EmpID,EmpName
HAVING COUNT(*)>1
DELETE Employees FROM Employees a INNER JOIN #temp b ON
a.EmpID=b.EmpID
INSERT INTO Employees(EmpID,EmpName)
SELECT EmpID,EmpName FROM...
March 24, 2011 at 11:07 pm
Viewing 15 posts - 91 through 105 (of 122 total)