Viewing 15 posts - 961 through 975 (of 1,183 total)
This one is for RS 2000, but the majority of it applies to 05. I like this one because it really digs into the inner workings of RS.
Hitchikers Guide to...
May 30, 2007 at 8:07 pm
My personal opinion would be to use a linking table to hold the employeeID and projectID. This way if an employee doesn't have a project, then there simply wouldn't be...
May 30, 2007 at 8:05 pm
This seems to work for me. If still getting incorrect results, please post the data that's being calced wrong.
SELECT
numberOfOrders = COUNT(DISTINCT s0.soNo)
,nullShip = SUM(CASE...
May 25, 2007 at 8:38 am
An important note. Unless you have a unique/primary key that identifies each unique order line item, any orders with all info the same will cause erronious dups. so if you...
May 24, 2007 at 1:38 pm
OK, This appears to get what you want. It may not be the most optimized solution though.
/* lets put all of the...
May 24, 2007 at 1:37 pm
What if the order that was split had one on time and one late. Do you need a result set of 3 orders and 2 onTime? or do you need...
May 24, 2007 at 11:52 am
Can you not refer to invShp instead of shpQty?
May 24, 2007 at 11:48 am
Can you post the DDL for all tables involved and sample data for them as well?
May 24, 2007 at 10:14 am
Move the check into the join clause....
SELECT comment.comment_id, comment.comment, comment.post_id, comment.comment_date, aspnet_Users.UserId, aspnet_Users.UserName,
user_pic.user_pic, user_pic.user_pic_default
FROM comment INNER JOIN
aspnet_Users ON comment.userid = aspnet_Users.UserId LEFT OUTER JOIN
user_pic ON...
May 19, 2007 at 8:25 am
If I understand you correctly, then just remove the "(user_pic.user_pic_default = 'y') AND" from your WHERE clause.
This will return ALL records for the postId regardless of the default value.
May 18, 2007 at 4:04 pm
What happens when you put http:///ReportServer in a new browser window?
May 18, 2007 at 4:00 pm
Yeah, I'm just having issues getting around the windows authentication required to "hit" the server.
FYI, we did find a work around though. Since our site's login page is .NET, which...
May 16, 2007 at 11:08 am
Ben,
Thanks, but you can't pass windows authenication via the URL, only the DB credentials can be passed that way.
May 16, 2007 at 8:19 am
Viewing 15 posts - 961 through 975 (of 1,183 total)