Viewing 15 posts - 16 through 30 (of 55 total)
first stax68, there are only 2 tables involved here.
One table has the accident info.
Info such as the name of caller, name of employee involved in the accident if different from...
June 20, 2003 at 10:20 am
my sincere apology, I must be losing my mind.
The last part of last post should be:
and use these variables in your insert statement.
how?
May 30, 2003 at 11:02 am
sorry, I messed up the last post.
It should look like this:
Do not declare the employee columns as input params to proc but instead declare them as variables
--Declare @address varchar(50)
--Declare @City...
May 30, 2003 at 11:00 am
hi David!
One last question, I promise
Do not declare the employee columns as input params to proc but instead declare them as variables
Select the variables from the employee table using @empid
Select...
May 30, 2003 at 10:53 am
David,not only are you good, but you are very patient--thank you very much.
I figured out the problem but unfortunately,I couldn't get here fast enough to stop you from thinking.
It was...
May 30, 2003 at 9:05 am
I guess it is reaching that annoying stage because what you suggested I just did.
As far as the command object is concerned, I have been using it now for over...
May 30, 2003 at 8:13 am
hi David!
Ok, I must be doing something wrong, (surprise!).
Now looking at the two forms below, the first one pulls data dynamically from the db; the other hardcodes the same info...
May 30, 2003 at 7:28 am
hi David!
I think your comment about passing id to stored proc is based having viewed the source of the form I gave a link to.
Well, I coded the dropdown to...
May 29, 2003 at 12:39 pm
hi David!
Thanks again.
Please take a look here:
http://www26.brinkster.com/simflex/kenig/FrmAccident.asp
So yes you are right.
The ideal situation would be to pick the names and have all data related to employee automatically...
May 29, 2003 at 6:04 am
hi David!
I apologize twice!.
First for just getting your response to my threaded question.
I checked a few times and gave up hope of getting any response.
Second, I apologize for not knowing...
May 28, 2003 at 1:49 pm
I am sorry tkbr0wn, you are right it worked.
I did a research last night and found an example almost exactly as what you posted now, but one of the sql...
May 27, 2003 at 10:29 am
insert into Actions (ActionTypeID,ActionDesc,ActionDate,ActionReport)
select at.ActionTypeID,
@ActionDesc,
@ActionDate,
@ActionReport
FROM ActionType at
I didn't think the above would work and it didn't.
May 27, 2003 at 8:57 am
tkbr0wn,
sorry I have already posted a response to amelvin before I saw your post.
Yes what you provided is exactly what I was looking for.
I was just wondering if it would...
May 27, 2003 at 8:31 am
Hi I believe I understand what you are saying and I am associating actionTypeID with desc to another table called Spinoff.
the spinoff table also has a prepopulated data.
which looks like...
May 27, 2003 at 8:28 am
Viewing 15 posts - 16 through 30 (of 55 total)