├── AS Keyword.sql ├── ASSIGNMENT1.docx ├── Assignment1_dbms.txt ├── Between_and_logical Operators.sql ├── Create_DropDatabase.sql ├── DatabasePlan.sql ├── Distinct Keyword.sql ├── Domain Constraints with check statement.sql ├── ERD-InvConSys.PNG ├── FirstTestReport ├── FirstTestReport.sln └── FirstTestReport │ ├── FirstTestReport.rptproj │ ├── FirstTestReport.rptproj.rsuser │ ├── RealEstate.rds │ ├── Report1.rdl │ ├── Report1.rdl.data │ └── bin │ └── Debug │ ├── RealEstate.rds │ ├── Report1.rdl │ └── build.obj ├── Labs ├── DBMS LAB2.docx ├── DBMS LAB3.docx ├── DBMS LAB7.docx ├── data_definition.sql ├── lab1.sql ├── lab4.sql └── lab6.sql ├── Like SQL.sql ├── Nested Queries.sql ├── No Action Refrential integrity constraints.sql ├── Numeric data Types.sql ├── PerdaySalary.sql ├── README.md ├── Set Null Refrential Integrity constraints.sql ├── String Data Types.sql ├── TableCreation.sql ├── erd.PNG ├── refrential integrity cascade constraints.sql └── stored Procedures.sql /AS Keyword.sql: -------------------------------------------------------------------------------- 1 | select CurrentSalary as salary from staff /*change column name*/ -------------------------------------------------------------------------------- /ASSIGNMENT1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadfaraz6640/Database-Management-System/51e5c5104933389f884abf2c9463d4b1ed31bd73/ASSIGNMENT1.docx -------------------------------------------------------------------------------- /Assignment1_dbms.txt: -------------------------------------------------------------------------------- 1 | -----Wards 2 | Ward_id int primary key identity 3 | Ward_Name nvarchar(50) 4 | Beds nvarchar(50) 5 | Location nvarchar(50) 6 | Telephone_Extension BIGINT 7 | 8 | 9 | ---------Bed 10 | Bed_Number(PK) 11 | Ward_id(FK) 12 | ------Staff 13 | staff_Number 14 | First_Name 15 | Last_Name 16 | Address 17 | Ph_Number 18 | Date_of_Birth 19 | Gender 20 | NIN 21 | Position 22 | Cuurent_Salary 23 | Salary_Scale 24 | Shift 25 | Ward_id 26 | Qualification_id(FK) 27 | Experience_id(FK) 28 | 29 | -----Qualification 30 | Qualification_id(PK) 31 | date_of_Qualification 32 | Type_of_Qualification 33 | Institute_qualification 34 | 35 | -----Experience 36 | Experience_id(PK) 37 | Position 38 | Start_Date 39 | Finish_Date 40 | Organization 41 | 42 | -------Patient 43 | Patient_id 44 | Patient_FirstName 45 | Patient_LastName 46 | Patient_Address 47 | Patient_DateBirth 48 | Patient_gender 49 | Patient_Martital_Status 50 | Patient_Date_Regd 51 | Patient_Relative_id(FK) 52 | LocalDoctor_id(FK) 53 | 54 | -------Patient_NextKin 55 | Patient_Relative_id 56 | FullName 57 | Relation_with_Patient 58 | Address 59 | Telephone 60 | 61 | --------LocalDoctors 62 | LocalDoctor_id 63 | Doctor_FUllName 64 | Doctor_ClinicNo 65 | Doctor_Address 66 | Doctor_Phone 67 | 68 | --------Appointments 69 | Appointment_id(PK) 70 | Patient_id(FK) 71 | staff_Number(FK) 72 | Date 73 | time 74 | Examination_RoomNo 75 | 76 | ---------WardDetails 77 | WD_id(PK) 78 | Ward_id(FK) 79 | Patient_id(FK) 80 | Date_On_WaitList 81 | Expected_Stay_Days 82 | Date_Admitted 83 | Date_Leave 84 | Actual_Date_Leave 85 | Bed_id 86 | 87 | ---------Drug 88 | Drug_Number(PK) 89 | Drug_name 90 | Drug_Description 91 | Dosage 92 | Method_intake 93 | Units_Per_unit 94 | Start_date 95 | Finish_Date 96 | 97 | ---------Medication 98 | Medication_id(PK) 99 | Patient_id(FK) 100 | Drug_id(FK) 101 | Ward_id(FK) 102 | Bed_id(FK) 103 | 104 | 105 | ----------Sur_NonSur_Items 106 | Item_Number(PK) 107 | Item_Type-->can be surgical and non surgical 108 | Item_name 109 | Item_Description 110 | Qty_Stock 111 | Reorder_level 112 | Cost_per_Item 113 | 114 | ----------Pharmaceutical 115 | Pharmaceutical_id(PK) 116 | Drug_Number(FK) 117 | Qty_Stock 118 | Reorder_level 119 | Cost_per_Item 120 | 121 | ----------Requistion_request 122 | Riquistion_number(PK) 123 | Drug_id(FK) 124 | Qty_drug 125 | req_date 126 | Staff_id(FK) 127 | 128 | -----------Requistion_Accepted 129 | RAccept_id(PK) 130 | Riquistion_number(FK) 131 | staff_id(FK)-->recieving_person 132 | 133 | ------------Suppliers 134 | Supplier_id(PK) 135 | Supply_Type-->can be surgical , non-surgical and pharma 136 | Supplier_Name 137 | Supplier_Address 138 | Supplier_Phone 139 | Supplier_Fax 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | -------------------------------------------------------------------------------- /Between_and_logical Operators.sql: -------------------------------------------------------------------------------- 1 | select * from staff where CurrentSalary between 15000 AND 25000 2 | select * from staff where CurrentSalary >= 15000 AND CurrentSalary <= 25000 3 | select * from staff where StaffShift = 'morning' OR Gender = 'female' -------------------------------------------------------------------------------- /Create_DropDatabase.sql: -------------------------------------------------------------------------------- 1 | create database InventoryControl /* command to create the database */ 2 | 3 | Drop database InventoryControl /* command to delete the database */ 4 | 5 | /* select the query and press ctrl+e to execute the query */ 6 | 7 | -------------------------------------------------------------------------------- /DatabasePlan.sql: -------------------------------------------------------------------------------- 1 | /*-----------------------inverntory Control System----------------- 2 | 3 | 1)Admin 4 | Aid , Aname , Email , password , Status , role 5 | 2)Login 6 | Lid , Email , password , role 7 | 3)Categories 8 | Cid , Catname 9 | 4)Product 10 | Pid , Cid , PName , Barcode , Expiry 11 | 5)PurchaseInvoice (from Supplier) 12 | PIid , Pid , Qty , PerUnitPrice , Total 13 | 6)Supplier 14 | Sid , SName , SContact , SAddress , SNtn , Status 15 | 7) Workers 16 | Wid , WName , WAddress , WContact , WEmail , WDesignation , WPassword 17 | 8)ProductPricing 18 | PPid , PIid , ProfitPercent , DiscountPercent , FinalPrice 19 | 9)Sales 20 | SLid , Pid , PQty , PIid , DiscountPrice , TotalPriceEach , GrossTotal 21 | 10)Bill 22 | Bid , SLid 23 | 24 | 11) History 25 | Hid , Wid , TimeLogin , TimeLogout 26 | 27 | */ -------------------------------------------------------------------------------- /Distinct Keyword.sql: -------------------------------------------------------------------------------- 1 | select distinct CurrentSalary from staff /*eliminate duplicate if use distinct*/ 2 | -------------------------------------------------------------------------------- /Domain Constraints with check statement.sql: -------------------------------------------------------------------------------- 1 | create table Domain_Constraints( 2 | sex char not null 3 | check(sex IN ('M','F')) 4 | ) 5 | 6 | insert into Domain_Constraints values('g') /*The INSERT statement conflicted with the CHECK constraint "CK__Domain_Cons__sex__6383C8BA" hence terminated*/ 7 | 8 | insert into Domain_Constraints values('M') 9 | 10 | select * from Domain_Constraints 11 | create domain sex_type as char check (value in ('m','f')); /*now sex_type becomes restricted datatype*/ 12 | -------------------------------------------------------------------------------- /ERD-InvConSys.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadfaraz6640/Database-Management-System/51e5c5104933389f884abf2c9463d4b1ed31bd73/ERD-InvConSys.PNG -------------------------------------------------------------------------------- /FirstTestReport/FirstTestReport.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.28307.1022 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{F14B399A-7131-4C87-9E4B-1186C45EF12D}") = "FirstTestReport", "FirstTestReport\FirstTestReport.rptproj", "{84B2DBB8-2D86-4CE4-81DE-E9BDBAC4B303}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Default = Debug|Default 11 | DebugLocal|Default = DebugLocal|Default 12 | Release|Default = Release|Default 13 | EndGlobalSection 14 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 15 | {84B2DBB8-2D86-4CE4-81DE-E9BDBAC4B303}.Debug|Default.ActiveCfg = Debug 16 | {84B2DBB8-2D86-4CE4-81DE-E9BDBAC4B303}.Debug|Default.Build.0 = Debug 17 | {84B2DBB8-2D86-4CE4-81DE-E9BDBAC4B303}.Debug|Default.Deploy.0 = Debug 18 | {84B2DBB8-2D86-4CE4-81DE-E9BDBAC4B303}.DebugLocal|Default.ActiveCfg = DebugLocal 19 | {84B2DBB8-2D86-4CE4-81DE-E9BDBAC4B303}.DebugLocal|Default.Build.0 = DebugLocal 20 | {84B2DBB8-2D86-4CE4-81DE-E9BDBAC4B303}.Release|Default.ActiveCfg = Release 21 | {84B2DBB8-2D86-4CE4-81DE-E9BDBAC4B303}.Release|Default.Build.0 = Release 22 | {84B2DBB8-2D86-4CE4-81DE-E9BDBAC4B303}.Release|Default.Deploy.0 = Release 23 | EndGlobalSection 24 | GlobalSection(SolutionProperties) = preSolution 25 | HideSolutionNode = FALSE 26 | EndGlobalSection 27 | GlobalSection(ExtensibilityGlobals) = postSolution 28 | SolutionGuid = {CB7301D8-B5DB-4927-B727-4102BAA9C924} 29 | EndGlobalSection 30 | EndGlobal 31 | -------------------------------------------------------------------------------- /FirstTestReport/FirstTestReport/FirstTestReport.rptproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Debug 5 | bin\Debug 6 | 2 7 | False 8 | False 9 | SSRS2016 10 | Win32 11 | FirstTestReport 12 | Datasets 13 | Data Sources 14 | Report Parts 15 | http://localhost/reportserver 16 | 17 | 18 | DebugLocal 19 | bin\DebugLocal 20 | 2 21 | False 22 | False 23 | SSRS2016 24 | Win32 25 | FirstTestReport 26 | Datasets 27 | Data Sources 28 | Report Parts 29 | http://localhost/reportserver 30 | 31 | 32 | Release 33 | bin\Release 34 | 2 35 | False 36 | False 37 | SSRS2016 38 | Win32 39 | FirstTestReport 40 | Datasets 41 | Data Sources 42 | Report Parts 43 | http://localhost/reportserver 44 | 45 | 46 | $base64$PFNvdXJjZUNvbnRyb2xJbmZvIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zOmRkbDI9Imh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vYW5hbHlzaXNzZXJ2aWNlcy8yMDAzL2VuZ2luZS8yIiB4bWxuczpkZGwyXzI9Imh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vYW5hbHlzaXNzZXJ2aWNlcy8yMDAzL2VuZ2luZS8yLzIiIHhtbG5zOmRkbDEwMF8xMDA9Imh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vYW5hbHlzaXNzZXJ2aWNlcy8yMDA4L2VuZ2luZS8xMDAvMTAwIiB4bWxuczpkZGwyMDA9Imh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vYW5hbHlzaXNzZXJ2aWNlcy8yMDEwL2VuZ2luZS8yMDAiIHhtbG5zOmRkbDIwMF8yMDA9Imh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vYW5hbHlzaXNzZXJ2aWNlcy8yMDEwL2VuZ2luZS8yMDAvMjAwIiB4bWxuczpkZGwzMDA9Imh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vYW5hbHlzaXNzZXJ2aWNlcy8yMDExL2VuZ2luZS8zMDAiIHhtbG5zOmRkbDMwMF8zMDA9Imh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vYW5hbHlzaXNzZXJ2aWNlcy8yMDExL2VuZ2luZS8zMDAvMzAwIiB4bWxuczpkZGw0MDA9Imh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vYW5hbHlzaXNzZXJ2aWNlcy8yMDEyL2VuZ2luZS80MDAiIHhtbG5zOmRkbDQwMF80MDA9Imh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vYW5hbHlzaXNzZXJ2aWNlcy8yMDEyL2VuZ2luZS80MDAvNDAwIiB4bWxuczpkZGw1MDA9Imh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vYW5hbHlzaXNzZXJ2aWNlcy8yMDEzL2VuZ2luZS81MDAiIHhtbG5zOmRkbDUwMF81MDA9Imh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vYW5hbHlzaXNzZXJ2aWNlcy8yMDEzL2VuZ2luZS81MDAvNTAwIiB4bWxuczpkd2Q9Imh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vRGF0YVdhcmVob3VzZS9EZXNpZ25lci8xLjAiPg0KICA8RW5hYmxlZD5mYWxzZTwvRW5hYmxlZD4NCiAgPFByb2plY3ROYW1lPjwvUHJvamVjdE5hbWU+DQogIDxBdXhQYXRoPjwvQXV4UGF0aD4NCiAgPExvY2FsUGF0aD48L0xvY2FsUGF0aD4NCiAgPFByb3ZpZGVyPjwvUHJvdmlkZXI+DQo8L1NvdXJjZUNvbnRyb2xJbmZvPg== 47 | @(DataSource) 48 | @(DataSet) 49 | @(Report) 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /FirstTestReport/FirstTestReport/FirstTestReport.rptproj.rsuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadfaraz6640/Database-Management-System/51e5c5104933389f884abf2c9463d4b1ed31bd73/FirstTestReport/FirstTestReport/FirstTestReport.rptproj.rsuser -------------------------------------------------------------------------------- /FirstTestReport/FirstTestReport/RealEstate.rds: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | SQL 5 | 6 | 7 | e215e435-42b6-49b1-9bf6-62efe1c0effb 8 | -------------------------------------------------------------------------------- /FirstTestReport/FirstTestReport/Report1.rdl: -------------------------------------------------------------------------------- 1 | 2 | 3 | Segoe UI 4 | 0 5 | 6 | 7 | 8 | SQL 9 | Data Source=MUHAMMADFARAZAN\SQLEXPRESS;Initial Catalog=RealEstateManagementSystem 10 | true 11 | 12 | Integrated 13 | 727b24a3-5e57-4733-8192-a502c624c1bb 14 | 15 | 16 | 17 | 18 | 19 | DataSource1 20 | SELECT Property.City, Property.Location, Property.Rooms, Property.Demand, Seller.Name, Seller.Gender, Seller.Contact, Property.Description 21 | FROM Property INNER JOIN 22 | Seller ON Property.Sid = Seller.Sid 23 | 24 | 25 | 26 | City 27 | System.String 28 | 29 | 30 | Location 31 | System.String 32 | 33 | 34 | Rooms 35 | System.String 36 | 37 | 38 | Demand 39 | System.String 40 | 41 | 42 | Name 43 | System.String 44 | 45 | 46 | Gender 47 | System.String 48 | 49 | 50 | Contact 51 | System.String 52 | 53 | 54 | Description 55 | System.String 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 1.02083in 69 | 70 | 71 | 1in 72 | 73 | 74 | 1.02083in 75 | 76 | 77 | 1.02083in 78 | 79 | 80 | 1in 81 | 82 | 83 | 1in 84 | 85 | 86 | 1in 87 | 88 | 89 | 1in 90 | 91 | 92 | 93 | 94 | 0.25in 95 | 96 | 97 | 98 | 99 | true 100 | true 101 | 102 | 103 | 104 | 105 | Location 106 | 117 | 118 | 2pt 119 | 2pt 120 | 2pt 121 | 2pt 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | true 130 | true 131 | 132 | 133 | 134 | 135 | Rooms 136 | 139 | 140 | 141 | 149 | 150 | 2pt 151 | 2pt 152 | 2pt 153 | 2pt 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | true 162 | true 163 | 164 | 165 | 166 | 167 | City 168 | 179 | 180 | 2pt 181 | 2pt 182 | 2pt 183 | 2pt 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | true 192 | true 193 | 194 | 195 | 196 | 197 | Demand 198 | 209 | 210 | 2pt 211 | 2pt 212 | 2pt 213 | 2pt 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | true 222 | true 223 | 224 | 225 | 226 | 227 | Description 228 | 231 | 232 | 233 | 241 | 242 | 2pt 243 | 2pt 244 | 2pt 245 | 2pt 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | true 254 | true 255 | 256 | 257 | 258 | 259 | Name 260 | 263 | 264 | 265 | 273 | 274 | 2pt 275 | 2pt 276 | 2pt 277 | 2pt 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | true 286 | true 287 | 288 | 289 | 290 | 291 | Contact 292 | 295 | 296 | 297 | 305 | 306 | 2pt 307 | 2pt 308 | 2pt 309 | 2pt 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | true 318 | true 319 | 320 | 321 | 322 | 323 | Gender 324 | 327 | 328 | 329 | 337 | 338 | 2pt 339 | 2pt 340 | 2pt 341 | 2pt 342 | 343 | 344 | 345 | 346 | 347 | 348 | 349 | 0.25in 350 | 351 | 352 | 353 | 354 | true 355 | true 356 | 357 | 358 | 359 | 360 | =Fields!Location.Value 361 | 372 | 373 | 2pt 374 | 2pt 375 | 2pt 376 | 2pt 377 | 378 | 379 | 380 | 381 | 382 | 383 | 384 | true 385 | true 386 | 387 | 388 | 389 | 390 | =Fields!Rooms.Value 391 | 394 | 395 | 396 | 404 | 405 | 2pt 406 | 2pt 407 | 2pt 408 | 2pt 409 | 410 | 411 | 412 | 413 | 414 | 415 | 416 | true 417 | true 418 | 419 | 420 | 421 | 422 | =Fields!City.Value 423 | 434 | 435 | 2pt 436 | 2pt 437 | 2pt 438 | 2pt 439 | 440 | 441 | 442 | 443 | 444 | 445 | 446 | true 447 | true 448 | 449 | 450 | 451 | 452 | =Fields!Demand.Value 453 | 464 | 465 | 2pt 466 | 2pt 467 | 2pt 468 | 2pt 469 | 470 | 471 | 472 | 473 | 474 | 475 | 476 | true 477 | true 478 | 479 | 480 | 481 | 482 | =Fields!Description.Value 483 | 486 | 487 | 488 | 496 | 497 | 2pt 498 | 2pt 499 | 2pt 500 | 2pt 501 | 502 | 503 | 504 | 505 | 506 | 507 | 508 | true 509 | true 510 | 511 | 512 | 513 | 514 | =Fields!Name.Value 515 | 518 | 519 | 520 | 528 | 529 | 2pt 530 | 2pt 531 | 2pt 532 | 2pt 533 | 534 | 535 | 536 | 537 | 538 | 539 | 540 | true 541 | true 542 | 543 | 544 | 545 | 546 | =Fields!Contact.Value 547 | 550 | 551 | 552 | 560 | 561 | 2pt 562 | 2pt 563 | 2pt 564 | 2pt 565 | 566 | 567 | 568 | 569 | 570 | 571 | 572 | true 573 | true 574 | 575 | 576 | 577 | 578 | =Fields!Gender.Value 579 | 582 | 583 | 584 | 592 | 593 | 2pt 594 | 2pt 595 | 2pt 596 | 2pt 597 | 598 | 599 | 600 | 601 | 602 | 603 | 604 | 605 | 606 | 607 | 608 | 609 | 610 | 611 | 612 | 613 | 614 | 615 | 616 | 617 | 618 | 619 | 620 | After 621 | 622 | 623 | 624 | 625 | 626 | 627 | DataSet1 628 | 0.35986in 629 | 0.16542in 630 | 0.5in 631 | 8.0625in 632 | 635 | 636 | 637 | 638 | 639 | true 640 | true 641 | 642 | 643 | 644 | 645 | My first Report 646 | 659 | 660 | 2pt 661 | 2pt 662 | 2pt 663 | 2pt 664 | 665 | 666 | 667 | 2in 668 | 117 | 118 | 2pt 119 | 2pt 120 | 2pt 121 | 2pt 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | true 130 | true 131 | 132 | 133 | 134 | 135 | Rooms 136 | 139 | 140 | 141 | 149 | 150 | 2pt 151 | 2pt 152 | 2pt 153 | 2pt 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | true 162 | true 163 | 164 | 165 | 166 | 167 | City 168 | 179 | 180 | 2pt 181 | 2pt 182 | 2pt 183 | 2pt 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | true 192 | true 193 | 194 | 195 | 196 | 197 | Demand 198 | 209 | 210 | 2pt 211 | 2pt 212 | 2pt 213 | 2pt 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | true 222 | true 223 | 224 | 225 | 226 | 227 | Description 228 | 231 | 232 | 233 | 241 | 242 | 2pt 243 | 2pt 244 | 2pt 245 | 2pt 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | true 254 | true 255 | 256 | 257 | 258 | 259 | Name 260 | 263 | 264 | 265 | 273 | 274 | 2pt 275 | 2pt 276 | 2pt 277 | 2pt 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | true 286 | true 287 | 288 | 289 | 290 | 291 | Contact 292 | 295 | 296 | 297 | 305 | 306 | 2pt 307 | 2pt 308 | 2pt 309 | 2pt 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | true 318 | true 319 | 320 | 321 | 322 | 323 | Gender 324 | 327 | 328 | 329 | 337 | 338 | 2pt 339 | 2pt 340 | 2pt 341 | 2pt 342 | 343 | 344 | 345 | 346 | 347 | 348 | 349 | 0.25in 350 | 351 | 352 | 353 | 354 | true 355 | true 356 | 357 | 358 | 359 | 360 | =Fields!Location.Value 361 | 372 | 373 | 2pt 374 | 2pt 375 | 2pt 376 | 2pt 377 | 378 | 379 | 380 | 381 | 382 | 383 | 384 | true 385 | true 386 | 387 | 388 | 389 | 390 | =Fields!Rooms.Value 391 | 394 | 395 | 396 | 404 | 405 | 2pt 406 | 2pt 407 | 2pt 408 | 2pt 409 | 410 | 411 | 412 | 413 | 414 | 415 | 416 | true 417 | true 418 | 419 | 420 | 421 | 422 | =Fields!City.Value 423 | 434 | 435 | 2pt 436 | 2pt 437 | 2pt 438 | 2pt 439 | 440 | 441 | 442 | 443 | 444 | 445 | 446 | true 447 | true 448 | 449 | 450 | 451 | 452 | =Fields!Demand.Value 453 | 464 | 465 | 2pt 466 | 2pt 467 | 2pt 468 | 2pt 469 | 470 | 471 | 472 | 473 | 474 | 475 | 476 | true 477 | true 478 | 479 | 480 | 481 | 482 | =Fields!Description.Value 483 | 486 | 487 | 488 | 496 | 497 | 2pt 498 | 2pt 499 | 2pt 500 | 2pt 501 | 502 | 503 | 504 | 505 | 506 | 507 | 508 | true 509 | true 510 | 511 | 512 | 513 | 514 | =Fields!Name.Value 515 | 518 | 519 | 520 | 528 | 529 | 2pt 530 | 2pt 531 | 2pt 532 | 2pt 533 | 534 | 535 | 536 | 537 | 538 | 539 | 540 | true 541 | true 542 | 543 | 544 | 545 | 546 | =Fields!Contact.Value 547 | 550 | 551 | 552 | 560 | 561 | 2pt 562 | 2pt 563 | 2pt 564 | 2pt 565 | 566 | 567 | 568 | 569 | 570 | 571 | 572 | true 573 | true 574 | 575 | 576 | 577 | 578 | =Fields!Gender.Value 579 | 582 | 583 | 584 | 592 | 593 | 2pt 594 | 2pt 595 | 2pt 596 | 2pt 597 | 598 | 599 | 600 | 601 | 602 | 603 | 604 | 605 | 606 | 607 | 608 | 609 | 610 | 611 | 612 | 613 | 614 | 615 | 616 | 617 | 618 | 619 | 620 | After 621 | 622 | 623 | 624 | 625 | 626 | 627 | DataSet1 628 | 0.35986in 629 | 0.16542in 630 | 0.5in 631 | 8.0625in 632 | 635 | 636 | 637 | 638 | 639 | true 640 | true 641 | 642 | 643 | 644 | 645 | My first Report 646 | 659 | 660 | 2pt 661 | 2pt 662 | 2pt 663 | 2pt 664 | 665 | 666 | 667 | 2in 668 |