Viewing 15 posts - 136 through 150 (of 153 total)
Yep, I thought I was looking for an output SP. I made the change but can you help on the FE VBA? Here is the function that calls this SP:
qryInsertNewPhone...
March 25, 2004 at 4:56 am
Antares, thanks so much. I am tracing every lead I can find because as you probably are aware, the medical field lags every other business segment by at least 10...
March 24, 2004 at 4:09 pm
Here is my current SP:
CREATE PROCEDURE dbo.procPhoneInsert
AS
INSERT INTO phone (EmpUpdated) VALUES ('9')
SELECT SCOPE_IDENTITY() AS 'NewPhoneID'
GO
Which works. It returns the NewPhoneID to the FE app (Access 2002).
The line...
March 24, 2004 at 3:55 pm
Thanks. I think I've got it!
SMK
March 22, 2004 at 5:06 pm
Thanks for the comments. How about just avoiding the term as a column name? Isn't that preferable just to prevent future issues?
SMK
March 17, 2004 at 11:15 am
That is a hotly debated topic and no definite consensus. I would refer you to Mary Chipman's discussion in her book on Access, SQL Server interactions. I don't have the...
March 15, 2004 at 5:26 pm
In this DB, almost all PKs are unique identity columns which you are right, tell you nothing about the data in that row. It doesn't matter if there is strict...
March 5, 2004 at 5:59 pm
Perhaps there could be a category for "those who have lost their minds completely" trying to do 5 jobs at once while picking up a "little" knowledge of SQL technology.
SMK
March 4, 2004 at 5:45 am
Thanks!
I think I am getting there. Meaning just about to the point where I could write a stored procedure. Life is so much easier when you know what you're doing.
I...
March 3, 2004 at 5:54 pm
I guess it's hard to argue about that! <g> What if I LIKE duplicate data? (just kidding)
Anyway, thanks for the encouragement to be compulsive.
SMK
February 27, 2004 at 9:59 am
Yes, thank you, that answers the question. I understand the concept but the real question is: why are you guys (DBAs) so compulsive about this? <g> It causes extra work to...
February 27, 2004 at 9:10 am
I have a MS Access 2002 frontend linked to a SQL server 2k backend. Data entry is done from form in Access.
HTH,
SMK
February 14, 2004 at 7:36 am
Yes. I checked and the constraint is not there. I get the error everytime I try to create it.
I am using identity columns as primary keys. Could that be involved?
SMK
February 6, 2004 at 8:16 am
I have checked for orphan records in the child table (ApptProcDetail) and there are none. Also, a month ago the relationship was intact. I just happened to be checking a...
February 6, 2004 at 7:08 am
Interesting comments. I must say we face the same issues in the medical profession. That's why you have to be alert and read the fine print on any of our...
February 5, 2004 at 5:35 am
Viewing 15 posts - 136 through 150 (of 153 total)