场地/活动预订数据库设计

发布于 2024-08-06 04:54:03 字数 325 浏览 3 评论 0原文

我的任务是设计一个用于在线预订的数据库。

我并不是在寻找完整的设计,因为我们之前已经有过在线房屋租赁的经验。

我想知道的是,我们如何设计一个数据库来预订酒店、旅行、活动。

我们有一些想法。

基础知识...

让所有场地/活动(一次/重复发生)注册。这看起来像是静态数据。

但我如何管理拥有 100 多个客房的酒店呢?

我有点难住了。

任何建议都会有帮助,或者只是关于我应该如何处理这个想法的想法。

我想在access中设计一个原型来向投资者展示设计,但计划在sql 2005/ 2008中做后端

I am task with designing a database for online bookings.

I am not looking for a full design as we have had previous exp with online house rental.

What i would like to know, is how do we design a db for booking of hotel, travel, events.

We have some ideas.

Basics...

Have all venues/ events (once/reoccuring) register. That seems like the static data.

But how do i manage a hotel with 100+ rooms?

I am kinda stumped.

Any recommedations would be helpfull, or just thoughts on how i should approach this idea.

I want to design a prototype in acces to show the investor the design, but plan to do the backend in sql 2005/ 2008

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

绅士风度i 2024-08-13 04:54:03

将架构分解为您可以预订的最小单元。如果您要预订房间,那么您可以执行以下操作:

酒店
名称 位置 HotelID 等

房间
HotelID RoomID 容量等

客户端
ClientID 姓名 地址等

ClientBooking
ClientID RoomID StartDate EndDate 等。

Break the architecture down into the smallest unit you can book. If you are booking rooms, then you could do something along these lines:

Hotel
Name Location HotelID etc.

Rooms
HotelID RoomID Capacity etc.

Client
ClientID Name Address etc.

ClientBooking
ClientID RoomID StartDate EndDate etc.

梦初启 2024-08-13 04:54:03

对于大型房间结构,您可以提供一种方法,让他们上传包含所需信息的 .txt 文件,然后使用 SSIS 导入到数据库中。这就是我们将客户信息输入数据库的方式。我每天从客户端上传数百万行数据。

For large room structures, you could provide a way for them to upload a .txt file with the required information and then do an import into the database ussing SSIS. THat's how we get information from clients into our datbase. I upload data from clients inthe millions of rows every day.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文