908 resultados para Database As A Tool For Hospitality Management
Resumo:
Hospitality managers may assume that unless under control, ethics in their operations are out of control. This article proposes a management control system for ethics.
Resumo:
Electronic database handling of buisness information has gradually gained its popularity in the hospitality industry. This article provides an overview on the fundamental concepts of a hotel database and investigates the feasibility of incorporating computer-assisted data mining techniques into hospitality database applications. The author also exposes some potential myths associated with data mining in hospitaltiy database applications.
Resumo:
Labor management relations in the hospitality sector is an important aspect of effective management. Increasingly, unions are becoming proactive in organizing hospitality workers. This manifests itself in strikes, boycotts, picketing, sexual harassment complaints, and complaints to OSHA regarding safety and health workplace violations. This research monitors the current scene with respect to labor management relations and analyzes work issues that have been brought up for third-party resolution by NLRB staff or arbitrators. The study reports on 66 NLRB cases and 104 arbitration cases. Issues brought before the NLRB include mostly contract interpretations. In arbitration, there were mostly discipline issues, including work rule violations, disorderly conduct, poor performance and employee theft. Quite often, the proposed job action on the part of the employer was discharge. In NLRB cases, the employee usually prevailed, while in arbitration the employer usually prevailed.
Resumo:
The current study examines the effects of an online workshop pertaining to classroom behavior management on teacher self-efficacy, attitudes, motivation, knowledge, and practices. In addition, information about teacher utilization of the Internet, their opinions about professional development, and experiences with classroom management were collected. Participants included 57 1st through 5th grade special and regular education teachers. Eligible teachers were those who teach an academic subject and had at least one child in the classroom they considered as disruptive. Teachers were randomized to either a training or waitlist group. Classroom observations of teacher practices and questionnaires were utilized. Teachers in the training group participated in two assessment points, baseline and post-workshop, and received access to the online course immediately following the baseline assessment. Teachers in the waitlist group participated in three assessment points, baseline, post-workshop, and follow-up, and received access to the online course immediately following the post-workshop assessment. Findings show that all teachers had access to the Internet at home and at school and used it on a daily basis. The majority of teachers indicated having some past training on all the techniques that were presented in the online workshop. All teachers expressed satisfaction with the workshop, indicating that it should be offered again. Post-workshop, findings showed significant group differences in knowledge with a large effect for the training group scoring higher than the waitlist group on a quiz. Secondly, group differences in self-efficacy, knowledge, and attitudes with teachers’ past-training as a moderator, was examined. Past-training was not found to be a significant moderator of self-efficacy, knowledge, or attitudes. However, the main effect for training group was significant for attitudes. In addition, teacher attitudes, but not knowledge and self-efficacy, significantly predicted motivation to implement. Next, the moderating effect of barriers on motivation and classroom management skill implementation was examined. Barriers were not found to be a significant moderator. Lastly, the training group was observed to be significantly more effective at giving commands compared to the waitlist group. The current study demonstrates the potential of a low-intensity online workshop on classroom management to enhance the accessibility of teacher professional development.
Resumo:
Background: Evidence-based medication and lifestyle modification are important for secondary prevention of cardiovascular disease but are underutilized. Mobile health strategies could address this gap but existing evidence is mixed. Therefore, we piloted a pre-post study to assess the impact of patient-directed text messages as a means of improving medication adherence and modifying major health risk behaviors among coronary heart disease (CHD) patients in Hainan, China.
Methods: 92 CVD patients were surveyed between June and August 2015 (before the intervention) and then between October and December 2015 (after 12 week intervention) about (a) medication use (b) smoking status,(c) fruit and vegetable consumption, and (d) physical activity uptake. Acceptability of text-messaging intervention was assessed at follow-up. Descriptive statistics, along with paired comparisons between the pre and post outcomes were conducted using both parametric (t-test) and non-parametric (Wilcoxon signed rank test) methods.
Results: The number of respondents at follow-up was 82 (89% retention rate). Significant improvements were observed for medication adherence (P<0.001) and for the number of cigarettes smoked per day (P=.022). However there was no change in the number of smokers who quitted smoking at follow-up. There were insignificant changes for physical activity (P=0.91) and fruit and vegetable consumption.
Resumo:
The section of CN railway between Vancouver and Kamloops runs along the base of many hazardous slopes, including the White Canyon, which is located just outside the town of Lytton, BC. The slope has a history of frequent rockfall activity, which presents a hazard to the railway below. Rockfall inventories can be used to understand the frequency-magnitude relationship of events on hazardous slopes, however it can be difficult to consistently and accurately identify rockfall source zones and volumes on large slopes with frequent activity, leaving many inventories incomplete. We have studied this slope as a part of the Canadian Railway Ground Hazard Research Program and have collected remote sensing data, including terrestrial laser scanning (TLS), photographs, and photogrammetry data since 2012, and used change detection to identify rockfalls on the slope. The objective of this thesis is to use a subset of this data to understand how rockfalls identified from TLS data could be used to understand the frequency-magnitude relationship of rockfalls on the slope. This includes incorporating both new and existing methods to develop a semi-automated workflow to extract rockfall events from the TLS data. We show that these methods can be used to identify events as small as 0.01 m3 and that the duration between scans can have an effect on the frequency-magnitude relationship of the rockfalls. We also show that by incorporating photogrammetry data into our analysis, we can create a 3D geological model of the slope and use this to classify rockfalls by lithology, to further understand the rockfall failure patterns. When relating the rockfall activity to triggering factors, we found that the amount of precipitation occurring over the winter has an effect on the overall rockfall frequency for the remainder of the year. These results can provide the railways with a more complete inventory of events compared to records created through track inspection, or rockfall monitoring systems that are installed on the slope. In addition, we can use the database to understand the spatial and temporal distribution of events. The results can also be used as an input to rockfall modelling programs.
Resumo:
Modern software applications are becoming more dependent on database management systems (DBMSs). DBMSs are usually used as black boxes by software developers. For example, Object-Relational Mapping (ORM) is one of the most popular database abstraction approaches that developers use nowadays. Using ORM, objects in Object-Oriented languages are mapped to records in the database, and object manipulations are automatically translated to SQL queries. As a result of such conceptual abstraction, developers do not need deep knowledge of databases; however, all too often this abstraction leads to inefficient and incorrect database access code. Thus, this thesis proposes a series of approaches to improve the performance of database-centric software applications that are implemented using ORM. Our approaches focus on troubleshooting and detecting inefficient (i.e., performance problems) database accesses in the source code, and we rank the detected problems based on their severity. We first conduct an empirical study on the maintenance of ORM code in both open source and industrial applications. We find that ORM performance-related configurations are rarely tuned in practice, and there is a need for tools that can help improve/tune the performance of ORM-based applications. Thus, we propose approaches along two dimensions to help developers improve the performance of ORM-based applications: 1) helping developers write more performant ORM code; and 2) helping developers configure ORM configurations. To provide tooling support to developers, we first propose static analysis approaches to detect performance anti-patterns in the source code. We automatically rank the detected anti-pattern instances according to their performance impacts. Our study finds that by resolving the detected anti-patterns, the application performance can be improved by 34% on average. We then discuss our experience and lessons learned when integrating our anti-pattern detection tool into industrial practice. We hope our experience can help improve the industrial adoption of future research tools. However, as static analysis approaches are prone to false positives and lack runtime information, we also propose dynamic analysis approaches to further help developers improve the performance of their database access code. We propose automated approaches to detect redundant data access anti-patterns in the database access code, and our study finds that resolving such redundant data access anti-patterns can improve application performance by an average of 17%. Finally, we propose an automated approach to tune performance-related ORM configurations using both static and dynamic analysis. Our study shows that our approach can help improve application throughput by 27--138%. Through our case studies on real-world applications, we show that all of our proposed approaches can provide valuable support to developers and help improve application performance significantly.
Resumo:
Aim. The purpose of this study was to develop and evaluate a computer-based, dietary, and physical activity self-management program for people recently diagnosed with type 2 diabetes.
Methods. The computer-based program was developed in conjunction with the target group and evaluated in a 12-week randomised controlled trial (RCT). Participants were randomised to the intervention (computer-program) or control group (usual care). Primary outcomes were diabetes knowledge and goal setting (ADKnowl questionnaire, Diabetes Obstacles Questionnaire (DOQ)) measured at baseline and week 12. User feedback on the program was obtained via a questionnaire and focus groups. Results. Seventy participants completed the 12-week RCT (32 intervention, 38 control, mean age 59 (SD) years). After completion there was a significant between-group difference in the “knowledge and beliefs scale” of the DOQ. Two-thirds of the intervention group rated the program as either good or very good, 92% would recommend the program to others, and 96% agreed that the information within the program was clear and easy to understand.
Conclusions. The computer-program resulted in a small but statistically significant improvement in diet-related knowledge and user satisfaction was high. With some further development, this computer-based educational tool may be a useful adjunct to diabetes self-management.
Resumo:
Safety Management Systems in aviation generate training programs that develop skills needed to perform safety functions. The objective of this study is to show that, in groups, individuals need to have interpersonal skills and, in particular, ability to communicate with others, to listen, and to influence. It is for this reason that Social Skills Training is important in Aviation. Professionals trained in social skills are more likely to identify threats and risks caused by interpersonal situations, be assertive, and take appropriate action. As a contribution, this paper suggests a set of policies, procedures and practices for educating and training future professionals who will work in aviation safety.
Resumo:
The first Cornell Institute for Healthy Futures (CIHF) roundtable, held in April 2016, brought together senior-level executives, educators, and leaders in senior housing and care to share experiences and exchange ideas. CIHF roundtables are purposely limited to approximately 25 to 30 participants “at the table” to foster discussion on a more intimate basis than traditional conferences. In addition to the formal participants, students, faculty, and guests observed and interacted during the event and attended a separate panel discussion, and reception the evening before. Students, faculty, and industry leaders also met together at a working luncheon session to brainstorm ideas for recruiting and training young talent for careers in the senior housing and care industry.
Resumo:
The early bird and night owl restaurant tool found in the accompanying Excel file provides an estimate of the effects of offering off-peak special menu prices. Unlike the classic back-of-envelope calculation, the tool includes the effect of anticipated cannibalization of full-price covers and seeks to optimize table use. The tool also considers the revenue from new customers attracted by the early bird or night owl promotions, as well as the level of increased business needed to achieve the net monetary value target for the promotion.
Resumo:
This report describes a tool for global optimization that implements the Differential Evolution optimization algorithm as a new Excel add-in. The tool takes a step beyond Excel’s Solver add-in, because Solver often returns a local minimum, that is, a minimum that is less than or equal to nearby points, while Differential Evolution solves for the global minimum, which includes all feasible points. Despite complex underlying mathematics, the tool is relatively easy to use, and can be applied to practical optimization problems, such as establishing pricing and awards in a hotel loyalty program. The report demonstrates an example of how to develop an optimum approach to that problem.
Resumo:
Weed management has become increasingly challenging for cotton growers in Australia in the last decade. Glyphosate, the cornerstone of weed management in the industry, is waning in effectiveness as a result of the evolution of resistance in several species. One of these, awnless barnyard grass, is very common in Australian cotton fields, and is a prime example of the new difficulties facing growers in choosing effective and affordable management strategies. RIM (Ryegrass Integrated Management) is a computer-based decision support tool developed for the south-western Australian grains industry. It is commonly used there as a tool for grower engagement in weed management thinking and strategy development. We used RIM as the basis for a new tool that can fulfil the same types of functions for subtropical Australian cotton-grains farming systems. The new tool, BYGUM, provides growers with a robust means to evaluate five-year rotations including testing the economic value of fallows and fallow weed management, winter and summer cropping, cover crops, tillage, different herbicide options, herbicide resistance management, and more. The new model includes several northernregion- specific enhancements: winter and summer fallows, subtropical crop choices, barnyard grass seed bank, competition, and ecology parameters, and more freedom in weed control applications. We anticipate that BYGUM will become a key tool for teaching and driving the changes that will be needed to maintain sound weed management in cotton in the near future.
Resumo:
This thesis examines the importance of effective stakeholder engagement that complies with the doctrines of social justice in non-renewable resources management decision-making. It uses hydraulic fracturing in the Green Point Shale Formation in Western Newfoundland as a case study. The thesis uses as theoretical background John Rawls’ and David Miller’ theory of social justice, and identifies the social justice principles, which are relevant to stakeholder engagement. The thesis compares the method of stakeholder engagement employed by the Newfoundland and Labrador Hydraulic Fracturing Review Panel (NLHFRP), with the stakeholder engagement techniques recommended by the Structured Decision Making (SDM) model, as applied to a simulated case study involving hydraulic fracturing in the Green Point Shale Formation. Using the already identified social justice principles, the thesis then developed a framework to measure the level of compliance of both stakeholder engagement techniques with social justice principles. The main finding of the thesis is that the engagement techniques prescribed by the SDM model comply more closely with the doctrines of social justice than the engagement techniques applied by the NLHFRP. The thesis concludes by recommending that the SDM model be more widely used in non- renewable resource management decision making in order to ensure that all stakeholders’ concerns are effectively heard, understood and transparently incorporated in the nonrenewable resource policies to make them consistent with local priorities and goals, and with the social justice norms and institutions.
Resumo:
In a principal-agent model we analyze the firm’s decision to adopt an informal or a standardized Environmental Management System (EMS). Our results are consistent with empirical evidence in several respects. A standardized EMS increases the internal control at the cost of introducing some degree of rigidity that entails an endogenous setup cost. Standardized systems are more prone to be adopted by big and well established firms and under tougher environmental policies. Firms with standardized EMS tend to devote more effort to abatement although this effort results in lower pollution only if public incentives are strong enough, suggesting a complementarity relationship between standardized EMS and public policies. Emission charges have both a marginal effect on abatement and a qualitative effect on the adoption decision that may induce a conflict between private and public interests. As a result of the combination of these two effects it can be optimal for the government to distort the tax in a specific way in order to push the firm to choose the socially optimal EMS. The introduction of standardized systems can result in win-win situations where firms, society and the environment get better off.