https://www.youtube.com/watch?v=CvIr-2lMLsk
[root@myhostname ~]# cat usercreation_script.sh #!/bin/bash # shell script to add a users to Linux server ## checking for highest volume partition on the server to create user’s home directory partition=`df -h | awk {‘print $4 ” ” $6 ‘} |…
Today MongoDB Inc is announcing the general availability of MongoDB 3.0. You can download here: www.mongodb.com/subscription/downloads MongoDB 3.0 expands the use cases for MongoDB by introducing a new pluggable storage engine architecture. A new storage engine, called WiredTiger, provides significantly improved…
High lock or slow reads are often symptoms of other underlying issues. The various root causes for these issues include, but are not limited to: Schema design Document Movement (I’ll focus on this topic in more detail below) Poor index…
The Demands of Your Database are Changing NoSQL technology was pioneered by leading internet companies — including Google, Facebook, Amazon, and LinkedIn — to overcome the limitations of 40-year-old relational database technology for use with modern web applications. Today, enterprises are…
Aurora on Amazon RDS Amazon Aurora is a fully-managed, MySQL-compatible, relational database engine that combines the speed and reliability of high-end commercial databases with the simplicity and cost-effectiveness of open-source databases. It delivers up to five times the performance…
Hi Everyone Check out the Couchbase training class webinars online, I hope you enjoy them. (Please note, you have to register to view them but it is well worth it.) Couchbase 101 Couchbase 102 Couchbase 103 Couchbase 104 Couchbase 105
I know im not alone in thinking that it affected the size of the data field. An unsigned int has the max value of 4294967295 no matter if its INT(1) or int(10) and will use 4 bytes of data. …