473,799 Members | 2,727 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

DATABASE ACCESS

I am trying to create a unique type of registration form for my job
upcoming Holiday Christmas
Party. There will be 60 tables for seatings with 10 people max at
table.

How can I write some codes to support this? I need to be able to see
the number of
people who are seating and any available seats at a given table. How
can I set my database
and pull the information to give what I want.

Oct 31 '06 #1
17 1476
With a lookup table.

DDL:
CREATE TABLE Person (
PersonID smallint primary key identity,
PersonName varchar(100) NOT NULL DEFAULT ''
)

CREATE TABLE PartyTable (
PartyTableID tinyint primary key identity,
TableName varchar(20) NOT NULL DEFAULT ''
)
CREATE TABLE PTLookup (
PersonID smallint foreign key references Person(PersonID ),
PartyTableID tinyint foreign key references PartyTable(Part yTableID)
)
GO
SET IDENTITY_INSERT PartyTable ON
DECLARE @i tinyint; SET @i = 1
WHILE @i < 11
BEGIN
INSERT INTO PartyTable (
PartyTableID, TableName
) VALUES (
@i, 'Table ' + CAST(@i as char)
)
SET @i=@i+1
END


DIAGRAM:

Table:
PartyTableID (PK)--.
PartyTableName `.
\ PTLookup:
`-----PartyTableID (FK)
,--------PersonID (FK)
/
PersonID (PK)-----'
PersonName

QUERIES:
Find people sitting at a specified table:

SELECT PersonName FROM Person
INNER JOIN PTLookup
ON Person.PersonID = PTLookup.Person ID
INNER JOIN PartyTable
ON PTLookup.PartyT ableID = PartyTable.Part yTableID
WHERE
PartyTable.Part yTableID = 3
Get a count at each table:
SELECT
PartyTable.Tabl eName, COUNT(PTLookup. PersonID)
FROM
PartyTable INNER JOIN PTLookup
ON PartyTable.Part yTableID = PTLookup.PartyT ableID
GROUP BY
PartyTable.Tabl eName
Ray at work


"IC1(SW/AW)" <sc******@gmail .comwrote in message
news:11******** *************@i 42g2000cwa.goog legroups.com...
>I am trying to create a unique type of registration form for my job
upcoming Holiday Christmas
Party. There will be 60 tables for seatings with 10 people max at
table.

How can I write some codes to support this? I need to be able to see
the number of
people who are seating and any available seats at a given table. How
can I set my database
and pull the information to give what I want.

Oct 31 '06 #2
IC1(SW/AW) wrote:
I am trying to create a unique type of registration form for my job
upcoming Holiday Christmas
Party. There will be 60 tables for seatings with 10 people max at
table.

How can I write some codes to support this? I need to be able to see
the number of
people who are seating and any available seats at a given table. How
can I set my database
and pull the information to give what I want.
If Ray's DDL generates errors when you try it, you should tell us what
database you are using. He provided Transact-SQL code for SQL Server. it
won't work for other types of databases.

--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Oct 31 '06 #3

"IC1(SW/AW)" <sc******@gmail .comwrote in message
news:11******** *************@i 42g2000cwa.goog legroups.com...
>I am trying to create a unique type of registration form for my job
upcoming Holiday Christmas
Party. There will be 60 tables for seatings with 10 people max at
table.
Thanks but I'm going away at Christmas.

How can I write some codes to support this? I need to be able to see
the number of
people who are seating and any available seats at a given table. How
can I set my database
and pull the information to give what I want.

Oct 31 '06 #4

I will be using microsoft access as my database. Will these code work
with access.

Bob Barrows [MVP] wrote:
IC1(SW/AW) wrote:
I am trying to create a unique type of registration form for my job
upcoming Holiday Christmas
Party. There will be 60 tables for seatings with 10 people max at
table.

How can I write some codes to support this? I need to be able to see
the number of
people who are seating and any available seats at a given table. How
can I set my database
and pull the information to give what I want.

If Ray's DDL generates errors when you try it, you should tell us what
database you are using. He provided Transact-SQL code for SQL Server. it
won't work for other types of databases.

--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Oct 31 '06 #5
No, it won't work in Access, but you can manually create the tables in the
same way. You'll have to write your queries a little different, I believe.
It seems Jet likes to use no fewer than 18,000 parentheses in any query that
uses more than one table. ;]

If you struggle with writing the queries in Jet format, post back.

Ray at work
"IC1(SW/AW)" <sc******@gmail .comwrote in message
news:11******** **************@ m73g2000cwd.goo glegroups.com.. .
>
I will be using microsoft access as my database. Will these code work
with access.

Bob Barrows [MVP] wrote:
>IC1(SW/AW) wrote:
I am trying to create a unique type of registration form for my job
upcoming Holiday Christmas
Party. There will be 60 tables for seatings with 10 people max at
table.

How can I write some codes to support this? I need to be able to see
the number of
people who are seating and any available seats at a given table. How
can I set my database
and pull the information to give what I want.

If Ray's DDL generates errors when you try it, you should tell us what
database you are using. He provided Transact-SQL code for SQL Server. it
won't work for other types of databases.

--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.

Oct 31 '06 #6
I tried the table setup in ACCESS and I couldn't get it to work. Need
Help......:>
Ray Costanzo [MVP] wrote:
No, it won't work in Access, but you can manually create the tables in the
same way. You'll have to write your queries a little different, I believe.
It seems Jet likes to use no fewer than 18,000 parentheses in any query that
uses more than one table. ;]

If you struggle with writing the queries in Jet format, post back.

Ray at work
"IC1(SW/AW)" <sc******@gmail .comwrote in message
news:11******** **************@ m73g2000cwd.goo glegroups.com.. .

I will be using microsoft access as my database. Will these code work
with access.

Bob Barrows [MVP] wrote:
IC1(SW/AW) wrote:
I am trying to create a unique type of registration form for my job
upcoming Holiday Christmas
Party. There will be 60 tables for seatings with 10 people max at
table.

How can I write some codes to support this? I need to be able to see
the number of
people who are seating and any available seats at a given table. How
can I set my database
and pull the information to give what I want.

If Ray's DDL generates errors when you try it, you should tell us what
database you are using. He provided Transact-SQL code for SQL Server. it
won't work for other types of databases.

--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Nov 1 '06 #7
Since I'm working on the company intranet. Could I just design
everything in access and allow the user to fill a form via access?


IC1(SW/AW) wrote:
I tried the table setup in ACCESS and I couldn't get it to work. Need
Help......:>
Ray Costanzo [MVP] wrote:
No, it won't work in Access, but you can manually create the tables in the
same way. You'll have to write your queries a little different, I believe.
It seems Jet likes to use no fewer than 18,000 parentheses in any query that
uses more than one table. ;]

If you struggle with writing the queries in Jet format, post back.

Ray at work
"IC1(SW/AW)" <sc******@gmail .comwrote in message
news:11******** **************@ m73g2000cwd.goo glegroups.com.. .
>
>
>
I will be using microsoft access as my database. Will these code work
with access.
>
Bob Barrows [MVP] wrote:
>IC1(SW/AW) wrote:
I am trying to create a unique type of registration form for my job
upcoming Holiday Christmas
Party. There will be 60 tables for seatings with 10 people max at
table.
>
How can I write some codes to support this? I need to be able to see
the number of
people who are seating and any available seats at a given table. How
can I set my database
and pull the information to give what I want.
>>
>If Ray's DDL generates errors when you try it, you should tell us what
>database you are using. He provided Transact-SQL code for SQL Server. it
>won't work for other types of databases.
>>
>--
>Microsoft MVP -- ASP/ASP.NET
>Please reply to the newsgroup. The email account listed in my From
>header is my spam trap, so I don't check it very often. You will get a
>quicker response by posting to the newsgroup.
>
Nov 1 '06 #8
Can you be a little more specific? Need help with what?

Ray at work

"IC1(SW/AW)" <sc******@gmail .comwrote in message
news:11******** **************@ f16g2000cwb.goo glegroups.com.. .
>I tried the table setup in ACCESS and I couldn't get it to work. Need
Help......:>
Ray Costanzo [MVP] wrote:
>No, it won't work in Access, but you can manually create the tables in
the
same way. You'll have to write your queries a little different, I
believe.
It seems Jet likes to use no fewer than 18,000 parentheses in any query
that
uses more than one table. ;]

If you struggle with writing the queries in Jet format, post back.

Ray at work
"IC1(SW/AW)" <sc******@gmail .comwrote in message
news:11******* *************** @m73g2000cwd.go oglegroups.com. ..
>
I will be using microsoft access as my database. Will these code work
with access.

Bob Barrows [MVP] wrote:
IC1(SW/AW) wrote:
I am trying to create a unique type of registration form for my job
upcoming Holiday Christmas
Party. There will be 60 tables for seatings with 10 people max at
table.

How can I write some codes to support this? I need to be able to see
the number of
people who are seating and any available seats at a given table. How
can I set my database
and pull the information to give what I want.

If Ray's DDL generates errors when you try it, you should tell us what
database you are using. He provided Transact-SQL code for SQL Server.
it
won't work for other types of databases.

--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.

Nov 1 '06 #9
Ok, I am trying to develop a web registration form for my Command
Military Christmas Party.
There will be 60 seating tables each table handling a max seating of
10 personnel at the party. The form needs to be able interact with a
database that will permit the following capabilities: To register for
seating, To see current names of people who have already registered(
this will let them know where their buddies are siting), annd allot a
certain number of seats for registering per table(10). Is this
possible to write codes to do this?
Should I just do this in ACCESS and have everybody to register via our
intranet? What is the easy and quickest way to do this? I got 2wks to
knock this out. Please help..

Ray Costanzo [MVP] wrote:
Can you be a little more specific? Need help with what?

Ray at work

"IC1(SW/AW)" <sc******@gmail .comwrote in message
news:11******** **************@ f16g2000cwb.goo glegroups.com.. .
I tried the table setup in ACCESS and I couldn't get it to work. Need
Help......:>
Ray Costanzo [MVP] wrote:
No, it won't work in Access, but you can manually create the tables in
the
same way. You'll have to write your queries a little different, I
believe.
It seems Jet likes to use no fewer than 18,000 parentheses in any query
that
uses more than one table. ;]

If you struggle with writing the queries in Jet format, post back.

Ray at work
"IC1(SW/AW)" <sc******@gmail .comwrote in message
news:11******** **************@ m73g2000cwd.goo glegroups.com.. .

I will be using microsoft access as my database. Will these code work
with access.

Bob Barrows [MVP] wrote:
IC1(SW/AW) wrote:
I am trying to create a unique type of registration form for my job
upcoming Holiday Christmas
Party. There will be 60 tables for seatings with 10 people max at
table.

How can I write some codes to support this? I need to be able to see
the number of
people who are seating and any available seats at a given table. How
can I set my database
and pull the information to give what I want.

If Ray's DDL generates errors when you try it, you should tell us what
database you are using. He provided Transact-SQL code for SQL Server.
it
won't work for other types of databases.

--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Nov 1 '06 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
3137
by: Sarah Tanembaum | last post by:
I was wondering if it is possible to create a secure database system using RDBMS(MySQL, Oracle, SQL*Server, PostgreSQL etc) and web scripting/programming language(Perl, PHP, Ruby, Java, ASP, etc) combination? I have the following in mind: I wanted to store all my( and my brothers and sisters) important document information such as birth certificate, SSN, passport number, travel documents, insurance(car, home, etc) document, and other...
3
3355
by: cooldv | last post by:
i am running a website on Windows 2000 server with ASP 3 webpages and Access 2000 database. (with a hosting company) traffic is slow at this time but expect to grow. lately i have been reading about sql database and sql server, specially this article: http://www.aspfaq.com/show.asp?id=2195 will someone help me understand: 1. with *SQL Server*, do i keep my current Access 2000 database and ASP pages?
10
6050
by: MHenry | last post by:
Hi, We were going merrily along for 6 years using this database to record all client checks that came into our office, including information about what the checks were for. Suddenly, network computers cannot access the database. The message is...
5
3701
by: premmehrotra | last post by:
I currently have a multi-user access database which is put on a shared drive L: on a Windows Servers. Entire database is one file premdb.mdb. Users access this database from their laptops. Following problems occur: 1. Access is way too slow in WAN environment. Server is located in New Jersey and users are in California and Puerto Rico. 2. Database often becomes corrupt 3. When one user updates some data in the database, other users...
8
3151
by: John Baker | last post by:
Hi: I am URGENTLY in need of some book or web site OR tool that will help me integrate a relatively simple access application into a web page or pages. This is a time recording system (by project), and I would be more than wiling to pull the updated database down from the Host using FTP on a monthly basis. Its just that I need to understand how to set it up on the web site itself. The Host supports SQL. Any direction you can give would...
1
1854
by: Claus Haslauer | last post by:
Hi, firstly, I am new to access03 and server03 Originally, I had written an access 2002 database. Then, we transferred (for another reason) to server 2003. Then, we got access 2003. Then I wanted to setup the system in the following way: The database (now in access2003) sits in a shared folder on the server2003 machine. Anybody else who has access to that server and the folder can open the database form that folder, add data, write
15
2563
by: philip | last post by:
On a form, I have a datagridview. This datagridview is constructed on a dataset filled by a tableadapter. The table adapter do very well what it must do when filling dataset. Insertions, modifications and deletions functions very well in the dataset. But impossible to transmit modifications in ACCESS database. Impossible to WRITE in database. Here is the code for data transmission from tableadapter to Access database :
7
2916
by: Allison | last post by:
Hi -- we are a small manufacturing looking for a multi-user database to take customer orders (nothing too complicated, with 3 users total). We think we should be using Access, but are wondering what alternatives there are. It has been recommended to us to use ASP.net and SQL instead, with the reasoning that: 1) Access is likely to go obsolete at some point 2) It will be more stable Does anybody have any thoughts on this?
18
9156
by: surfrat_ | last post by:
Hi, I am having the following problems in getting Microsoft Visual Studio 2005 Professional to link to an Access .mdb database. Please help me to sort this out. Problem 1: The Microsoft page "How to: Connect to Data in an Access Database"
21
4125
by: nihad.nasim | last post by:
Hi there, I have a database in Access that I need on the web. The web page should connect to the database and write records for certain tables and view records for others. I want to know a reliable way of connecting Access to a server. I am willing to switch to any version of Access which might solve the problem. Which server would you recommend and what are the advanatages and disadvantatges of the server you propose? Please also inlcude...
0
9689
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9550
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
10248
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10032
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9085
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5469
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5597
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3764
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2942
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.