Viewing 15 posts - 16 through 30 (of 73 total)
It was my first attempt at a CONSTRAINT. I'm well known for taking baby steps in my technique and code. If I were more experience, then I'd be bothered, but...
August 4, 2010 at 8:42 pm
Roy Ernest (7/26/2010)
Please keep in...
July 27, 2010 at 3:33 pm
Yeah, I was thinking that it'd be an AD group. I keep having the pleasure of having new things thrown at me quite unexpectedly and wanted to have some idea...
July 23, 2010 at 12:37 pm
I think I've got it. The join was on the primary key in the parent to the foreign key in the child. The correct join needed to be on the...
July 19, 2010 at 7:47 pm
Steve Jones - Editor (7/19/2010)
If I have Customers:
Create table Customers( Customer varchar(20))
go
insert Customers select 'Acme'
union select 'Brad'
go
Now I want to change the Customer...
July 19, 2010 at 6:07 pm
Steve Jones - Editor (7/19/2010)
If you modify a table, the trigger runs after the modification is done, but before it is committed.
So you're saying that the big thing to consider...
July 19, 2010 at 4:45 pm
Actually now that I think about it, I'm liking the idea of the ASPX page generating an email and then setting up rules in Outlook which move the message to...
July 16, 2010 at 1:21 pm
It is an Access/SQL Server app.
I did think about using the Front End, however the fact that two users on two different machines might update it disqualified that, until a...
July 16, 2010 at 12:57 pm
Its geared toward providing the users with the information immediately if its not accessible, regardless of for how long. The department needing it is such that when we're busy they're...
July 16, 2010 at 10:46 am
Both actually. To be specific, is it possible to do something where in a trigger fires a sp that grabs records and then essentially exports them to a text file,...
July 16, 2010 at 9:29 am
david.c.holley (7/14/2010)
Where do I need to go in...
July 14, 2010 at 7:33 pm
That's entirely a possibility.
It does also solve another question that I had that I've seen crop up here and there about selecting the oldest or youngest child record for...
July 14, 2010 at 5:53 pm
RakeshRSingh (7/13/2010)
1. First the From clause will be processed
2. Then WHERE clause will be processed
3. Then SELECT clause will...
July 14, 2010 at 10:02 am
Eric Mamet (7/6/2010)
I do a kind of pivot dynamically....
July 6, 2010 at 7:16 pm
I need the query to pull all parent records and each one's most recent child.
July 6, 2010 at 2:28 pm
Viewing 15 posts - 16 through 30 (of 73 total)