Wednesday, July 28, 2010

Additional team bonus, energy stimulate team


For the marketing team to set the salary system has been discussed for many businesses and headache. If you set a good, you can play a small but powerful chain of effects; if the set is not good, then make the team lifeless, unable to inspire the team dynamic. Now many companies marketing team to set the salary system is generally base salary plus bonus or commission, the basic salary is fixed, while the bonus and commission rate of or are based on sales or profits to reach the floating state. and bonus calculations are set according to some formula, the higher non- the right to determine the distribution of lower bonuses. This is just the hardware evaluation of the marketing team, while the team's cohesion. discipline. team building. execution so they can not use money in the form of assessment. and so it was a blind spot of the assessment team.
So how in the form of bonus marketing team at the same time evaluation of hardware and software, the maximum excitation team dynamic? I believe that the marketing team can effectively set up the team prize to solve this problem. Specifically as follows:
1. Establish the marketing team in various positions in the base of the team bonuses, such as 500 yuan, director of marketing; marketing manager for 400 yuan; marketing director or the Office of the Director of 300 yuan; marketers 200 yuan.
2. Determine the marketing team of software assessment indicators.
3. All the hardware assessment targets marketers pay staff bonuses based on the formula, but the team bonus pay not to be directly calculated.
4. After the end of monthly appraisal software by a higher index based on lower-level team to determine the distribution of bonuses, and pay staff salaries. Should be emphasized that higher levels can only determine the distribution of direct subordinates of the team prize, not leapfrog distribution. Such as marketing general manager only director of marketing team can determine the distribution of bonus, but can not determine distribution, marketing manager of the team bonuses, and so on.
Note: 1. Bonus percentage of total team prize too hard to 5% to 15% more appropriate. If the ratio is too large, it will lead marketers money floating base is too large, is not conducive to marketing team stable and prone to fraud and bribery marketing management phenomena, but the ratio is not easy too low, the ratio is too low there will not achieve the purpose of the assessment team of software.
2. Despite the higher level team can leapfrog to the distribution of bonuses, but the monitor has a responsibility and obligation, once the lower levels found lower in the distribution of bonus among the team of serious anomaly should be ordered to lower-level explanation and correction.
3. To avoid the marketing managers in the allocation of bonuses to team appeared''to do good "for the average distribution of the phenomenon.
This bonus can also be used to set system to other departments, specific methods and issues can refer to the above methods and issues.






Recommended links:



The Pressure Of Free Memory



Introduction Icons



Is out of date, ADSL Anecdotes



mp3 To aac



FrontPage production of special Effects button



Additional team bonus, energy stimulate team



Firefox 3.6 will be shielded malicious plug-in



[Modeling] Rose2001 new features



.ape Files



Convert Mp4 Avi



H264 Format



Easy Online GAMING



Reviews Reference Tools



Low back not just a cheap PC



Monday, July 12, 2010

Initiate an instance of DB2 table space to explain



Table space is stored in the database and the database logic layer between the tables. Table space created in the database, table space created in the table.

Use the table space is a clear advantage to a reasonable distribution of the data stored in different disk or stored in different locations on the disk to help improve data access efficiency.

DB2 table space by way of management is divided into two types: system management space (System Management Space, SMS) and database management space (Database Management Space, DMS).

Divided by type: rules table space, a large object table space, system temporary table space, the user temporary table space.

Rules contained in user data table space table. The default user table space named USERSPACE1, the index is also stored in the rule table space, additional system catalog table is also on the rules table space. Default system catalog table space named SYSCATSPACE.

Temporary table space is divided into system temporary table space and user temporary table space.

System temporary table space used to store various data manipulation (sorting, re-table, create index, connection tables) in the internal temporary data required, although you can create any number of system temporary table space, but recommends that users only use most of the table used to create a page size, the default system temporary table space named TEMPSPACE1.

User temporary table space used to store the global temporary table shows (note the global temporary table has been stored in the application temporary data). User temporary table space is not created by default when the database was created.

SMS is the operating system for each container file space in a directory; DMS each container is a fixed, pre-allocated file, or a physical device.

SMS management is relatively simple, automated management by the operating system, the size of space changes with the amount of data automatically adjusted.

DMS is managed by the database, the space created when the OK, space is not enough time to manually add or delete some data to free space.

In most cases, DMS performance better than SMS.

Using the command line to create a simple SMS table space syntax:

CREATE TABLESPACE; MANAGED BY SYSTEM USING ('';'')

Example One: In Windows, create a SMS table space:
CREATE TABLESPACE RESOURCE MANAGED BY SYSTEM USING (''d: acc_tbsp'','' e: acc_tbsp'','' f: acc_tbsp'')
Complete results of the D, E, F three disk name acc_tbsp create three folders, each folder has a name SQLTAG.NAM the following file.

Example Two: Remove case of an SMS table space is created:
DROP TABLESPACE RESOURCE
End run this command, the corresponding table space will be removed from the DB2 registry, but the three folders on the disk still needs to manually remove.

Using the command line to create DMS table space, a simple syntax:
CREATE TABLESPACE; MANAGED BY DATABASE USING (FILE'';'' or CREATE TABLESPACE; MANAGED BY DATABASE USING (DEVICE'';''

Example Three: In Windows, to create a DMS table space, using their two 5,000-page file container:
CREATE TABLESPACE RESOURCE MANAGED BY DATABASE USING (FILE''d: db2dataacc_tbsp''5000, FILE''e: db2dataacc_tbsp''5000)
Operation results are as follows: in D, E db2data disk folder The following creates a file named acc_tbsp, large and small, to 20000K (default page size is 4K).

Example Four: In the case of three to create the table space to add a container:
ALTER TABLESPACE RESOURCE ADD (FILE''f: db2dataacc_tbsp''5000)
Results of the operation in the RESOURCE table space consists of three containers (files): d: db2dataacc_tbsp, e: db2dataacc_tbsp, f: db2dataacc_tbsp.

Example Five: The RESIZE clause to change the case of three to create the table space container size:
ALTER TABLESPACE RESOURCE RESIZE (file''d: db2dataacc_tbsp''8000, file''e: db2dataacc_tbsp''8000, file f: db2dataacc_tbsp''8000) for each container (file) size into 8000. The bigger the capacity of the container will not be wrong, but if the container has been filled with data, then reduce the capacity of the container will cause an error.

Cases 6: The case of 3 EXTEND clause to change the table space to create the size of the container:
ALTER TABLESPACE RESOURCE EXTEND (file''d: db2dataacc_tbsp''1000, file''e: db2dataacc_tbsp''1000, file''f: db2dataacc_tbsp''1000)
Operating results of the order based on the original capacity, each container to increase 1000.

Cases 7: Delete the case of three created in DMS table space:
DROP TABLESPACE RESOURCE
The result of running in the DB2 registry to remove the RESOURCE table space, while the disk to the corresponding folders and files are automatically deleted together.

Eight cases: in UNIX to create a DMS table space, use of each of the three logical volumes 10000:
CREATE TABLESPACE RESOURCE MANAGED BY DATABASE USING (DEVICE''/ dev/rdblv6''10000, DEVICE''/ dev/rdblv7''10000, DEVICE''/ dev/rdblv8''10000)

The above mentioned statement UNIX device must already exist, and the instance owner and SYSADM group must be able to write them.
Comparison of SMS and DMS
Characteristics of SMS DMS
Table space can be dynamically increased the number of containers you N Y be able to index data stored in the table in different table spaces you N Y be able to store large object data to a different table space table, you N Y table can be distributed to multiple storage a table space, you N Y only need to allocate space when you Y N table space can be placed on different disks you Y N created, you can change the block size N N

Cases 9: Creating a system temporary table space:
CREATE SYSTEM TEMPORARY TABLESPACE tmp_tbsp MANAGED BY SYSTEM USING ('d: tmp_tbsp', 'e: tmp_tbsp')
System temporary table can only be stored in the system temporary table space, so the database must always have at least one system temporary table space.

Case of 10: create a user temporary table space:
CREATE USER TEMPORARY TABLESPACE usr_tbsp MANAGED BY DATABASE USING (FILE 'd: db2datauser_tbsp' 5000, FILE 'e: db2datauser_tbsp' 5000)
User temporary table space to store the description of the temporary table (DECLARE GLOBAL TEMPORARY TABLE statement using the definition)

Case of 11: Using RENAME statement to rename table space:
RENAME TABLESPACE RESOURCE TO RES1
With the statement to rename table space, will automatically change all references to the table space, catalog records, so no need to care about the table space in the individual objects.

Case of 12: In the RESOURCE table space to create a table named T1:
CREATE TABLE T1 (ABC INT) IN RESOURCE







Recommand Link:



Christmas-Idea PSP AOL Video Encode



Help Tools Storage



Mp4 to avi



AlltoDVD DVD to DivX



Blackberry Format



Free Download Converter Mp4 To 3gp



How-to DVD To DivX



ALLTODVD VOB to MPEG



avi to 3GP



Evaluate Business Databases And Tools



Bliss CD Sound MP2 to OGG Ripping



CD-R WAVE To Midi



Bluesea Xvid MPG MPEG Encode



LasVegas Blackberry Converter



Explosion Blackberry Converter



PRINTER Report



Simple Food And Drink