Viewing 15 posts - 46 through 60 (of 87 total)
don't know what happened to the prior post....here it is.
I misunderstood what you were asking for. Usually you would use a GROUP BY to get some aggregate like MIN, MAX,...
May 28, 2009 at 12:46 pm
Is this what you mean?
SELECT DISTINCT col1, col2, col3
FROM yourTable
May 28, 2009 at 12:01 pm
Can you show some schema and sample data?
May 15, 2009 at 11:19 am
like i said...."but I'm no mathematician;-)"
i think the teacher's question is either incorrectly phrased or the student's description (or interpretation) of the question is incorrect.
May 15, 2009 at 9:01 am
perhaps give each answer a point value.
if question 1 has choices A B C D, then value them as 1 2 3 4 and do your calculations on the values....
May 14, 2009 at 1:45 pm
as far as i know, there is no such thing....but I'm no mathematician;-)
May 14, 2009 at 1:19 pm
create an ssis variable like, varSQLCommand string
then use an expression for varSQLCommand:
"select LastName, First name from tblemployer where EmployeeID = " + varEmployeeID +
"union
select LastName, First name from tblemployer
inner...
May 13, 2009 at 4:48 pm
i've had this same pain myself....
read this:
basically, try setting "ByPassPrepare" to true and see if that helps.
another way is to build up the entire sql command as a variable and...
May 13, 2009 at 3:25 pm
and change the query to:
select LastName, FirstName from tblEmployee where EmployeeID = ?
bc
May 13, 2009 at 3:11 pm
I agree, this is an excellent series. Very thorough. Looking forward to more.
bc
May 13, 2009 at 8:06 am
Would this work for you? It will also find 2 letter combinations that aren't valid US state abbreviations, though...
SELECT * FROM sys.databases WHERE name LIKE '%[_][A-Z][A-Z]'
bc
April 30, 2009 at 3:52 pm
Professional "SQL Server 2005 Integration Services" is a good book from WROX to start with.
You can do your updates and deletes prior to the Fuzzy Lookup Data Flow...
March 31, 2009 at 12:47 pm
Is Reporting Services an option? Because its incredibly easy using a straight forward query and letting RS group your data in a matrix.
Otherwise take a look at the sql...
March 27, 2009 at 10:09 am
Viewing 15 posts - 46 through 60 (of 87 total)