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



Tuesday, November 24, 2009

Happiness RM to DVD


Happiness RM to DVD is the best RealMedia converter software. easy convert Real Media files(.rm, .rmvb) to AVI, MPEG-1, MPEG-2, VCD, SVCD, DVD files. convert RM/RMVB to AVI DIVX XVID MPEG VCD SVCD DVD and burn to DVD/CD. You can change the codec/system type to PAL or NTSC, and adjust the video size of the output files . It supports to convert almost all video, such as: RM to AVI, RM to DIVX XVID, RM to MPEG-1, RM to MPEG-2, RM to WMV, RM to VCD, RM to DVD, RM to PSP Video, iPod Video, Zune Video, iPhone Video...



Support convert AVI, Divx, ASF, WMV, WMA, MPEG, MOV, QT, RM, RMVB, file to MPEG with all encode format such as VCD PAL/NTSC, SVCD PAL/NTSC, DVD PAL/NTSC, MPEG-1 standard, MPEG-2 standard etc. Support convert AVI, Divx, ASF, WMV, WMA, MPEG, MOV, QT, RM, RMVB, file to AVI with all encode format such as DIVX, XVID, Mircosoft MPEG-4 etc.

Sunday, November 8, 2009

Magic Flash Decompiler


Magic Flash Decompiler is professional SWF decompiling software which offers a treasure trove of tools for those who want to extract elements from flash movies, edit dynamic texts and images of flash movies. You can effortlessly convert between EXE and SWF files. Similar to other utilities in this genre, Magic Flash Decompiler allows you to extract SWF elements such as image, shape, sound, font, text, button, sprite, script and frame from any SWF file. It works without a hitch and in our test, the program showed good speed.

This program is designed to virtually anyone who needs to extract elements from flash movies, just buy it and let Magic Flash Decompiler do more with your flash decompiling.


Magic Flash Decompiler supports the conversion between SWF and EXE file.
Magic Flash Decompiler allows you to replace images of current flash movie with desired images and also allows editing dynamic texts (text, diaphaneity, font, color) at your will.

Sunday, October 18, 2009

How-to PS2 Converter


How-to PS2 Converter converts AVI, DivX/Xvid, WMV, MPEG videos to PS2 WMV or MP4 video format in one simple click. It is a powerful PS2 MPEG4 video converter/PS2 burner with fast working speed in burning movie to PS2 and downloading movie to PS2. Now you can get this PS2 MPEG4 video converter at a very competitive price! Its key features include: The software features superb video audio quality and fast conversion speed. And it is very easy to use.

How-to PS2 Video Converter is a best video and movie converter to PS2! This product offers convert movie to Sony PS2, Easy Convert AVI, MPEG, WMV, MOV, MP4, RM, RMVB, DivX, ASF, VOB, 3GP and etc. How-to PS2 Converter helps you watch your music videos and movies on your PS2.

Tuesday, October 6, 2009

Youtube FLV to SWF Ultra


It's most popular and very easy to use YouTube tools. helps you Fast download, convert, play, manage your favorite YouTube videos. If you're a YouTube fan, you'll love YouTube tool! is the most powerful YouTube assistant on the planet. YouTube tool easily: 1. Fast downloads YouTube videos, 2. Supports unlimited simultaneous downloads (a real time saver!), 3. Automatically names the downloaded video the same as the YouTube title, 4. Converts YouTube videos to various video formats, including Video, DVD, VCD, AVI, MPG, MPEG, Divx, Xvid, WMV, RM, RMVB, MOV, MP4, 3GP, SWF, DAT, H264, VOB, Flash, PDA, M4V, 3G2, AMV, CDA, DV,QuickTime, ASX, TV, VHS, FLV, H264, BDMV, MAC, Apple TV, Zune, iPod, PDA, PSP, PS2, PS3, Xbox, Xbox 360, Mobile Phone, Cell Phone, Blackberry, Wii, Laptops, Printers, Palm OS, Pocket PC, PPC, Treo, Psion, EPOC, iphone.
Easily Convert all popular video formats. Provides the highest speed to download YouTube video. Support unlimited simultaneous downloading tasks. Supports auto-name your downloaded video title as the YoutTube page shows. Offers you the most convenient task management and the easiest control capability. About Conversion Features. - is the most powerful YouTube assistant on the planet.

Friday, September 11, 2009

Blu-Ray Demuxer Professional


Blu-Ray Demuxer Pro is a powerful tool for Blu-Ray demuxing. The main function of Blu-Ray Demuxer Pro is decompilation of Blu-Ray disk into video, audio and other files. All output data are ready for editing in any authoring software. It saves your time and allows to use only one tool for the reauthoring.

Blu-Ray Demuxer Pro contains extended user interface. Extended user interface allows to view all internal structure of Blu-Ray disc, including all logic fields created by authoring software.

Blu-Ray Demuxer Pro is intended for the remaking of old BD projects if you did not save the previous project file or data, for example, for the new BD version.

Warning:
Blu-Ray Demuxer Pro does not make any unauthorized operations with Blu-Ray disc, it is not intended to break cryptoprotection or any other protection of disk. Blu-Ray Demuxer Pro is intended to help BD author in the remaking of old Blu-Ray projects in new using the method of back conversion into primary data assets. Blu-Ray Demuxer Pro does not violate any intellectual property rights too as it works only with not protected Blu-Ray discs.

There are some important features that make Blu-Ray Demuxer a really unique BD Tool:

- Automatic processing of the whole BD
- Posibility to process any single file selected by the user
- Video, Audio, Subpicture, Menu data stream extraction
- Chapter points extraction
- Times for subpictures extraction
- Positions for Menu pictures extration
- Creation of logic structure of interconnections for Menu pages
- Creation of well structured list of files
- Reflection of all logic fields, including Clips, PlayLists, MovieObjects ...
- Creation of Subpictures and Chapters scripts for Sonic Blu-Ray Scenarist - world wide leader of Authoring Software
- Decompilation time of any Blu-Ray is about 1 hour depending of PC power
- Output formats for extracted data are well known and used in several authoring programs: SST, BDN, XML, PNG, TXT, CSV