Earn Money On Short URLs is one the amazing and easiest method of all time. No doubt their are hundreds of different ways to earn money from living room but each and every task require little technical effort and investment. But from all them Earn money from URL shortener is easy and free to use. If you does not have any technical or development skills and even marketing word scares you then its better option for you to go with url shortening to earn some decent money. Now the question what the URL short means and how this mechanism really works.? Lets start which basic understanding about URL shorteners, as its name describes shorten down the long URL. Basically URL shorteners are used to make long ugly urls into small, easy to remember. Commonly we all use bitly and any other service to accomplish this task. But they are only used for shorting perform but on the other hand there are few services who provide as way to monetize from that short links. Those serv...
Below tutorialdba.com collected and sorted out hundreds of universal License Keys for all major versions of VMware Workstation Pro (not for VMware Workstation Player) 4.x, 5.x, 6.x, 7.x, 8.x, 9.x, 10.x, 11.x, 12.x and v14.x on Windows and Linux platforms (support both 32-bit and 64-bit operating system) in this single post. Besides, we also provide some license keys for VMware other projects. Just enjoy and share them. // 4~14 Universal License Keys // Version License Keys VMware Workstation VMware Workstation 4.x.x ZHDH1-UR90N-W844G-4PTN6 G1NP0-T88AL-M016F-4P8N2 ZC14J-4U16A-0A04G-4MEZP J1WF8-58LDE-881DG-4M8Q3 VMware Workstation 5.x.x LUXRM-WP0DN-A256U-4M9Q3 DJXDR-NDT27-Y2NDU-4YTZK DA925-HP80U-Z8HDC-4WXXP 3KW2W-AYR2C-88M6F-4MDQ2 VMware Workstation 6.x.x A0E8R-YUDFV-6AK2F-4GAN2 CRX0D-VWL0V-7CJ6C-46C7A NA8RX-QPNDU-D2LA9-4WAZL 1H4WM-N21FZ-7GK2A-44U5U 6AJ6N-THY2P-42KEF-4WTFG FK8R9-LPCDT-88H4Y-4WRN3 KAR8R-T8MAL-K8J6A-4WDXQ YJEKW-JMFF4-YA1DC-4WTQ...
In this post, I am sharing few important function for finding the size of database, table and index in PostgreSQL. Finding object size in postgresql database is very important and common. Is it very useful to know the exact size occupied by the object at the tablespace. The object size in the following scripts is in GB. The scripts have been formatted to work very easily with PUTTY SQL Editor. 1. Checking table size excluding table dependency: SELECT pg_size_pretty(pg_relation_size('mhrordhu_shk.mut_kharedi_audit')); pg_size_pretty ---------------- 238 MB (1 row) 2. Checking table size including table dependency: SELECT pg_size_pretty(pg_total_relation_size('mhrordhu_shk.mut_kharedi_audit')); pg_size_pretty ---------------- 268 MB (1 row) 3. Finding individual postgresql database size SELECT pg_size_pretty(pg_database_size('db_name')); 4. Finding individual table size for postgresql database -including dependency index: SELECT pg_size_pretty(pg_total_rel...
PostgreSQL allows one to create tables which aren't written to the Write Ahead Log, meaning they aren't replicated or crash-safe, but also don't have the associated overhead, so are good for data that doesn't need the guarantees of regular tables. But if you decided an unlogged table should now be replicated, or a regular table should no longer be logged, you'd previously have to create a new copy of the table and copy the data across. But in 9.5, you can switch between logged and unlogged using a new command: Set an unlogged table to logged: ALTER TABLE <tablename> SET LOGGED; Set a logged table to unlogged: ALTER TABLE <tablename> SET UNLOGGED; For example: # CREATE UNLOGGED TABLE messages (id int PRIMARY KEY, message text); # SELECT relname, CASE relpersistence WHEN 'u' THEN 'unlogged' WHEN 'p' then 'logged' ELSE 'unknown' END AS table_type FROM pg_class WHERE relna...
The pglogical extension provides logical streaming replication for PostgreSQL We use the following terms to describe data streams between nodes, deliberately reused from the earlier Slony technology: • Nodes - PostgreSQL database instances • Providers and Subscribers - roles taken by Nodes • Replication Set - a collection of tables Architectural details: • pglogical works on a per-database level, not whole server level like physical streaming replication • One Provider may feed multiple Subscribers without incurring additional disk write overhead • One Subscriber can merge changes from several origins and detect conflict between changes with automatic and configurable conflict resolution (some, but not all aspects required for multi-master). • Cascading replication is implemented in the form of changeset forwarding. Requirements :- To use pglogical the provider and subscriber must be running PostgreSQL 9.4 or newer. The pglogical exten...
Comments
Post a Comment