Viewing 15 posts - 76 through 90 (of 122 total)
select ID,Division,DateofBirth,SSN,EmployeeCode from Employee as a
where a.Division=(select Division from Employee b where a.Division=b.Division
group by Division having COUNT(*)>1)
and DateofBirth=(select DateofBirth from Employee b where a.DateofBirth=b.DateofBirth
group by...
May 1, 2012 at 2:19 am
I have tried this it worked
Created two data flow tasks one for 'Geetapc14' table and one for Geetapc15
1. For the first data flow task selected source as...
April 20, 2012 at 8:30 am
Try this for better performance
WITH C AS
(
SELECT *, ROW_NUMBER() OVER(PARTITION BY ID ORDER BY (SELECT 0)) AS rn
FROM MyTable
)
DELETE FROM C
WHERE rn>1
November 27, 2011 at 4:23 am
Fairly simple steps i have given.
November 25, 2011 at 7:33 am
Conditional Split is the best method for such cases.
November 21, 2011 at 2:19 am
I get header with all the columns entered or selected. But data section it shows empty
November 17, 2011 at 4:32 am
Could please help me to regarding one more issue
I want to replace not null data with some other data
for Ex
In previous case we replaced null with some data. I want...
September 20, 2011 at 4:47 am
One simple way is Mark IsStoredProcedure flag to '1'
Execute the stored procedure same as you do in Query Analyzer in Sql Server 2008
August 30, 2011 at 4:35 am
Got it solved.
Need to use
Tools->Options->Click on Solutions and Projects and Solutions node->Click on general->Enable option “Always Show Solution”.
July 21, 2011 at 7:31 am
Most of the time this issue occurs when you the target URL is incorrect.
Pass Web Services URL when you are deploying the report.
Mention the port number also in target URL
For...
July 13, 2011 at 11:42 pm
Entered
""Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + @[User::FileName] + ";Extended Properties=\"Excel 8.0;HDR=YES\";"" in expression window
when you evaluate expression Following value is displayed in expression window
Provider=Microsoft.Jet.OLEDB.4.0;Data Source=;Extended Properties="Excel 8.0;HDR=YES";
here =" + @[User::FileName] + "...
July 6, 2011 at 9:17 am
That's correct if you do at the query level. It will eliminate all issues
July 3, 2011 at 11:30 pm
You are accessing the wrong URL.
try below steps.
First you need to configure report url in
'Reporting Services Configuration Manager'
Steps you need to follow
1.Go to 'Reporting Services Configuration Manager'
2.Click on web...
July 3, 2011 at 10:54 pm
Thanks this was very useful. I needed ready only permission. Now i am able to access all databases in SSIS using SQL Server Authentication.
Definitely will go through all the roles.
June 30, 2011 at 12:15 pm
Do not select database from 'Select Or Enter a database name'
Just type 'msdb' and test the connection.
Thanks,
Praveen
June 29, 2011 at 2:00 am
Viewing 15 posts - 76 through 90 (of 122 total)