Viewing 11 posts - 16 through 26 (of 26 total)
are you getting any errors or warnings when you execute the package? My initial guess is that SSIS is trying to guess the datatypes, and when it sees the first...
April 6, 2010 at 11:05 am
Well just walked out of my exam. Passed!! I did find the exam difficult, and I was positive I failed by the end. I would say the transcended materials had...
April 3, 2010 at 11:31 am
Great, make sure that none of your values in column2 are longer than 255 characters or they may be truncated. Glad I could help.
-Andrew
April 3, 2010 at 9:02 am
actually, you said this was SQL 2000. Not sure if you can do varchar(max)... never worked with 2000. If you get an error converting, try something like varchar(8000) instead
April 3, 2010 at 8:58 am
hmm, you could try converting that field in the query
SELECT Column1, CONVERT(varchar(max), Column2), COUNT(Column2) as 'Count'
FROM TableName
GROUP BY Column1, Column2
not sure if you'd need to do that convert inside the...
April 3, 2010 at 8:51 am
any reason you are using ntext for column2? Unless you have a good business reason, I'd try switching it to varchar(255)... the 255 represents the max length of the items...
April 3, 2010 at 8:31 am
ok, this is a data type issue. Can you provide the data types of your columns?
April 3, 2010 at 8:21 am
Hey,
You may have already tried this, but by default I don't think SQL 2008 enables remote connections.
Rright click the server in SSMS and click properties. Select Connections. Make sure...
April 3, 2010 at 8:17 am
Hey there,
you should do a group by with both your columns and a count of just the second column. So...
SELECT Column1, Column2, COUNT(Column2) as 'Count'
FROM TableName
GROUP BY Column1, Column2
-Andrew
April 3, 2010 at 7:58 am
I agree you should be fine running a 2005 enterprise report server pulling data from 2008 standard db engine. of course if you want to upgrade your report server to...
April 3, 2010 at 7:52 am
Thanks for the input.
Exam's tomorrow. I'll post my opinion of how prepared I was tomorrow...
Andrew
April 2, 2010 at 8:15 am
Viewing 11 posts - 16 through 26 (of 26 total)