Viewing 15 posts - 1 through 15 (of 32 total)
Thank you for the answer!
This works great but I came across an issue.
This is the sturcture of #t2 (temp table)
CREATE TABLE #t2
( ID INT IDENTITY(1,...
November 9, 2012 at 11:05 am
I think I should be more clear on what I need 🙂
Here is the set of data from which I have to select
DocID MilestoneDate ...
October 12, 2012 at 10:03 am
This code works great.
I would elaborate on my question if you don't mind.
Basicly what I want is
if MilestoneID = 10 or MilestoneID = 11 and not empty select more...
October 12, 2012 at 6:38 am
Thanks for the reply!
There is a primary key in my table (DocMilestoneID) which I omitted to include in the code I gave you 🙁
Sorry about that.
I will try your code.
Thanks
October 11, 2012 at 2:48 pm
🙂 Should have known !!!
Thanks
October 11, 2012 at 12:29 pm
Thanks for help
seems to be working.
How would you do it in the following case:
If MilestoneID = 35 Then
MilestoneDate
Else
getData()
So in our case result should be:
DocIDLatestDate
302012-10-18
312012-10-11
Thanks
October 11, 2012 at 11:49 am
Thanks for the reply.
In this case it is fixed number of Baseline columns.
August 13, 2012 at 10:38 am
Actually I like this idea of 1 table with flags 'U', 'D' etc.
Thanks again for all these suggestions and ideas. I learn a lot today.
DD
July 19, 2012 at 1:22 pm
🙂
It is hard to explain and the process itself is very complicated.
More I work on it gets more confusing. :angry:
We want to show to our contacts what we have about...
July 19, 2012 at 1:02 pm
I thought more in case when user deletes for example info in some specific field. Since I update just changed info into NeedApproval.Table, I wondered what I will do with...
July 19, 2012 at 11:34 am
How would you deal with the case when contact wants to delete some info we have in our system?
Thanks
DD
July 19, 2012 at 9:53 am
Do you think it is reliable to keep staging table (in your case UpdateInfo_NeedApproval table) in the same db as the production table (in your case UpdateInfo table)?
Our web site...
July 19, 2012 at 8:19 am
Yes you are right , I want them to see what they have just enetered.
Thanks for such a detailed reply.
DD
July 18, 2012 at 2:33 pm
One thing I forgot to mention is that when user login to web site we select his data and we display it to the user. After he updates it...
July 18, 2012 at 12:28 pm
Viewing 15 posts - 1 through 15 (of 32 total)