Forum Replies Created

Viewing 6 posts - 1 through 6 (of 6 total)

  • RE: Roles/Views

    Thanks for the quick reply Antares686.

    So is this better:

    SELECT Person.PersonID, Person.Firstname, Person.Lastname,

    Person.Department, Person.middlename, Task.TaskID,

    Task.TimeFrom, Task.TimeTo, Task.Task, Task.TaskDate

    FROM Person INNER JOIN

    ...

  • RE: Increments

    OK great.

    As for my next table - Person

    PersonID - PK

    Firstname

    Lastname

    Department

    Would it be advisable to make PersonID an IDENTITY column also?

    There will be about 10 people using this database but I...

  • RE: Increments

    Right, thanks Antares.

    But, being a beginner, this has raised another question:

    This was my original table

    tbl_task

    taskID (PK)

    PersonID (FK)

    Task

    TimeFrom

    TimeTo

    Taskdate

    So could I redo this table to look like this:

    CREATE TABLE [tbl_Task] (

    [idx] [int]...

  • RE: Tmesheet Database

    That's great Scorpion_66, it's much clearer now.

    The thing that is confusing me is where the SQL stops and the VB begins. I'm going to read up on VB some...

  • RE: Tmesheet Database

    Hi

    So I'd pre generate the numbers for the different engineers and then use a trigger to insert the ID numbers when 'Bob' filled in a form?

    Thanks for the advice, your...

  • RE: Tmesheet Database

    Hi

    Scorpian_66: What you say makes sense and I've changed my model now to the 2 tables, Person -> Task.

    I'm trying to think about the end result which will be a...

Viewing 6 posts - 1 through 6 (of 6 total)