数据库毕业设计---外文翻译_第1页
数据库毕业设计---外文翻译_第2页
数据库毕业设计---外文翻译_第3页
数据库毕业设计---外文翻译_第4页
数据库毕业设计---外文翻译_第5页
已阅读5页,还剩3页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、学士毕业论文附 录附录a: 外文资料翻译原文部分:customer targettingthe earliest determinant of success in the development of a profitable card scheme will lie in the quality of applicants that are attracted by the marketing effort. not only must there be sufficient creditworthy applicants to avoid fruitless and expensive

2、application processing, but it is critical that the overall mix of new accounts meets the standard necessary to ensure ultimate profitability. for example, the marketing initiatives may attract sufficient volume of applicants that are assessed as above the scorecard cut-off, but the proportion of ac

3、ceptances in the upper bands may be insufficient to deliver the level of profit and lesser bad debt required to achieve the financial objectives of the scheme.this chapter considers the range of data sources available to support the development of a credit card scheme and the tools that can be appli

4、ed to maximize the flow of applications from the required categories.data availabilitythe data that makes up the ingredients from which marketing campaigns can be constructed can come from many diverse sources. typically, it will fall into four categories:1 the national or regional register of voter

5、s;2 the national or regional register of court judgments that records the outcome of creditor-debtor legislation;3 any national or regional pooled information showing the credit history of clients of the participating lenders; and 4 commercially compiled data including and culled from name and addre

6、ss lists, survey results and other market analysis data, e.g. neighborhoods and lifestyle categorization through geo-demographic information systems.the availability and quality of this data will vary from country to country and bureau to bureau.availability is not only governed by the extent to whi

7、ch the responsible agency has undertaken to record it, but also by the feasibility of accessing the data and the extent (if any) to which local consumer legislation or other considerations (e.g. religious principles) will allow it to be used. other limitations on the use of available data may lie in

8、 the simple impossibility or expense of accessing the information sources, perhaps because necessary consumer consent for divulgence has been withheld or because the records are not yet stored electronically.the local credit information bureaux will be able to provide guidance on all of these matter

9、s, as will many local trade or professional associations or the relevant government departments. data segmentation and analyses the following remarks deal with the ways in which lawfully obtained data may then be processed and analyzed in order to maximize its value as the basis of a marketing prosp

10、ect list. examples of the types and uses of data that will play a role in the credit decision area are discussed later in the chapter, within the context of application processing. the key categories into which prospects may be segmented include lifestyle, propensity to purchase specific products (f

11、inancial or otherwise) and levels of risk. the leading international information bureaux will be able to provide segmentation systems that are able to correlate each of these data categories to provide meaningful prospect lists in rank order. additionally, many bureaux will have the capability to fu

12、rther enhance the strength and value of the data. through the selective purchasing of data from bona fide market sources, and by overlaying generic factors deduced from the analysis of the broad mass of industry information that routinely passes through their systems, the best international operator

13、s are now able to offer marketing and credit information support that can add significantly to the quality of new applicants.the importance of the role and standard of this data in influencing the quality of the target population for mailings, etc. should not be underestimated. information that is d

14、ated or inaccurate may not only lead a marketer and the organization into embarrassment and damage their reputations, but it will also open the credit card scheme to applicants from outside either the target sector or ,worse still, applicants outside the lenders view of an acceptable credit risk. fr

15、om this, it follows that you should seek to use an information bureau whose business principles and operating practices comply with the highest levels of both competence and integrity.developing the prospect databasethis is the process by which the raw data streams are brought together and subjected

16、 to progressive refinement, with the output representing the refined base from which prospecting can begin in earnest. a wide experience-often across many different markets and countries-in the sourcing, handling and analysis of data inevitably improves the quality of the ideas and systems that a bu

17、reau can offer for the development of the prospect database. in summary, the typical shape of the service available from the very best bureaux will support a process that runs as follows:1. collect and consolidate all data to be screened for inclusion;2. merge the various streams;3. sort and classif

18、y the data by market and credit categories;4. screen the date using predetermined marketing and credit criteria; and5. consolidate and output the refined list.bureaux will charge for the use of their expertise and systems. therefore, consideration should be given to the volumes of data that are to b

19、e processed and the costs involved at each stage. the most cost-effective approach to constructing prospect databases only undertakes the lowest-cost screening process within the earlier stages. the more expensive screening processes are not employed until the mass of the data has been reduced by ea

20、rlier filtering. it is impossible to be prescriptive about the range and levels of service that are available, but reference to one of the major bureaux operating in the region could certainly be a good starting point. campaign management and analysis again, this is an area where excellent support i

21、s available from the best-of-breed bureaux. they will provide both the operational support and software capabilities to mount, monitor and analyse your marketing campaign, should you so wish. their depth of experience and capabilities in the credit sector will often open up income: cost possibilitie

22、s from the solicitation exercise that would not otherwise be available to the new entrant. the first important applications of dbmss data items include names and addresses of customers, accounts, loans and their balance, and the connection between customers and their accounts and loans, e.g., who ha

23、s signature authority over which accounts. queries for account balances are common, but far more common are modifications representing a single payment from or deposit to an account.as with the airline reservation system, we expect that many tellers and customers (through atm machines) will be query

24、ing and modifying the banks data at once. it is vital that simultaneous accesses to an account not cause the effect of an atm transaction to be lost. failures cannot be tolerated. for example, once the money has been ejected from an atm machine ,the bank must record the debit, even if the power imme

25、diately fails. on the other hand, it is not permissible for the bank to record the debit and then not deliver the money because the power fails. the proper way to handle this operation is far from obvious and can be regarded as one of the significant achievements in dbms architecture.database system

26、 changed significantly. codd proposed that database system should present the user with a view of data organized as tables called relations. behind the scenes, there might be a complex data structure that allowed rapid response to a variety of queries. but unlike the user of earlier database systems

27、, the user of a relational system would not be concerned with storage structure. queries could be expressed in a very high level language, which greatly increased the efficiency of database programmers. relations are tables. their columns are headed by attributes.client server architecturemany varie

28、ties of modern software use a client-server architecture, in which requests by one process (the client ) are sent to another process (the server) for execution. database systems are no exception, and it is common to divide the work of the components shown into a server process and one or more client

29、 processes.in the simplest client/server architecture, the entire dbms is a server, except for the query interfaces that the user and send queries or other commands across to the server. for example, relational systems generally use the sql language for representing requests from the client to the s

30、erver. the database server then sends the answer, in the form of a table or relation, back to client. the relationship between client and server can get more complex, especially when answers are extremely large. we shall have more to say about this matter in section 1.3.3. there is also a trend to p

31、ut more work in the client, since the server will be a bottleneck if there are many simultaneous database users. 附录b: 外文资料翻译译文部分:客户目标:最早判断发展可收益卡的成功性是在于受市场影响的被吸引的申请人的质量。不仅需要有足够信用度的申请人以避免高花费却无益的过程,但同时所有账户的综合是否能符合保证最终获利的需要也是决定性的。比如,市场初期可能会吸引到足够量的客户,但是在上半段接受的比例就远不足以分配给收益水平和越少的再无所需的达到金融目标的计划。本章考虑了数据源的范围能

32、够支持信用卡计划的发展和可以应用在市从各种需求种类中最大化申请数的工具。可用数据:构成要素的数据能构建市场运动取自不同的源,他被典型的分为4段:1 选民在国家或地区的登录2 国家或地区登录到法庭判断,可看到债权人和债务人立法的结果3 任何国家或地区的贷款信息,显示了客户参与贷款的信用历史也包括4 商用编译过的数据。还有从姓名地址名单中精选出的数据,调查结果,以及其他市场分析数据,如:通过人口统计信息系统这些数据的可用信和质量会随着国家地区的变化而变化,可用性不仅仅在某种程度由负责的代理商接受控制,而且有处理数据的可行性决定。当地消费立法或其它状况决定它是否能被使用。其他使用可用数据的限制可能存

33、在于简单得不可能或是处理信息源的支出,可能因为必须由客户同意才能透露已经被禁止还未被电子储存起来,当地信用卡信息办公室能够提供关于所有这些事物的指导信息,除此以外,许多当地的专业贸易协会或相关政府部门也提供。数据段和数据分析:下述评论处理、合法化的到数据,然后应用并分析之以获得基本市场期望值的最大利润。关于类型的例子和数据的使用在判定信用领域扮演着角色,这些将在之后的章节中同关于应用过程的文章一起讨论。期望的主要种类被分成生活方式,购买特殊商品的倾向(金融或其他的),还有风险水平。主要的国际信息局将提供能够将各类数据提供有意义的期望表以等级的顺序段系统。另外,许多局又进一步加强数据的力度和价值

34、的能力。通过选择性的从带好意的市场源购买数据,然后通过覆盖一般的事实推断自分析常规经过系统的广泛的大量的工业信息,最好的国际的操作员现能提供市场和信用信息以支持新加入的重要新申请人的质量。角色的重要性和数据的标准影响目标人群的质量,不能被轻视。陈旧的活不正确的数据可能不仅导致市场领导者和组织者陷入窘境和影响他们的威望,但同时可能会会从外部对申请人敞开信用卡计划,或目标防御区,更胜者申请人将脱离借款人能控制的范围。从中你可以知道你应该应用一个信息局,他的原则和操作都遵从最高水平的完整性和功能性。发展理想的数据库:这一过程是:未经处理的数据流被集中然后进行改善,他的输出就是改善过的数据,这是我应该尽早开发的部分。很多经验从不同市场国家中得到的在收集处理分析数据是得到的,都证明这个理念和系统的价值,那就是一个信息局能够为理想的数据库发展提供支持。总之最典型的从信息局得到的服务将按如下程序:1 收集整合所有的数据,

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论