Viewing 15 posts - 1 through 15 (of 20 total)
So what if someone who is not on the team, say on the HR team, and they don't have the project/solution file. Are they just out of luck with...
March 10, 2010 at 6:21 am
I think I'm understanding now, the one datasource (being shared by all the reports in the project) is depended by the one-shared project file, or better yet a solution file....
March 10, 2010 at 6:00 am
Great article Jeff, helped me out a lot!
:w00t:
Taffy
December 17, 2007 at 9:12 am
I figured it out. Going through the steps and testing to make sure I got it right showed me that I used the group by incorrectly.
Thanks, Lynn,...
December 17, 2007 at 7:45 am
Here it is better asked!
If OBJECT_ID('TestA','U') is not null
drop table TestA
CREATE TABLE [TestA]
(
[comp_id] [char](5) NOT NULL,
[applcnt_id] [varchar](16) NULL
)
If OBJECT_ID('TestB','U') is not null
drop table TestB
CREATE TABLE [TestB]
(
[comp_Id] [char](5) NOT NULL,
[applcnt_id] [varchar](16)...
December 17, 2007 at 7:34 am
ok, I'll take a look at that and create the quesiton better.
For anyone who might read this and have not read the article, here it is:
Forum Etiquette: How to post...
December 17, 2007 at 6:01 am
I think I made a mistake in trying to explain this. I tried to make this simple for an explanation, but I think I need to add that these...
December 14, 2007 at 1:50 pm
ok, thanks for the feedback you guys, it's what I was looking for. Looks like I can either run the connection through an xml file or run the connection...
December 12, 2007 at 6:12 am
When I use the If OBJECT_ID() IS Null
I get the same snytax errors as with the other. I'm not sure why it is doing it but t-sql does not...
December 6, 2007 at 6:05 am
I think this is what I was looking for, I'll give it a try--thanks for the feedback!
December 5, 2007 at 6:39 pm
Ok, I see. Create the table in A then fill it is b. Thanks again guys!
Taffy
March 9, 2006 at 6:00 am
Hey, thanks for the feedback. I've made the procedures simple for the explanation. Procedure B has functions that will be called by many stored procedures. You're saying that if I...
March 9, 2006 at 5:58 am
Hey, I appreciate your feedback. I'm not saying that your solution is wrong. What I'm looking for is a formula that would be inside a stored procedure. Another stored procedure...
February 16, 2006 at 5:40 am
This is an interesting start, but not quite what I'm looking for. In this solution you have to know the first Monday for any calculation. I'm looking to take to...
February 16, 2006 at 5:17 am
Viewing 15 posts - 1 through 15 (of 20 total)