Berikut ini daftar beberapa situs yang menyediakan e-book seputar IT yang bisa didownload gratis. List ini senantiasa diupdate, jadi sebaiknya di-bookmark siapa tau perlu di kemudian hari. Jika anda punya situs e-book yang baik silahkan hubungi kami di halaman Contact.
Read more…
Categories: E-Learning, e book Tags: Ajax, Algorithms, Business & Investing, C & C++, Certification Stuff, database, Delphi, Development for Web, Dot NET, download, e book, General Programming, Graphics & Design, Java, javascript, Magazines, Medical & Health, Networks, Operating System, Perl, PHP, Python, Science & Engineering, Scripts & Web Templates, Software Development, UML, Video Training, XML
Image by lilit via Flickr
Dalam konteks bahasa SQL, pada umumnya informasi tersimpan dalam tabel-tabel yang secara logik merupakan struktur 2 dimensi yang terdiri dari baris-baris data (row atau record) yang berada dalam satu atau lebih kolom (column). Baris pada tabel sering disebut sebagai instance dari data sedangkan kolom sering disebut sebagai attributes atau field. Read more…
Oracle XE is a database server provided by Oracle.
Download the installation and setup program from this address. Run the setup program that will show up a dialog like this:

Read more…
Backing up and Restoring mysql database could be done through several ways. You can backup and restore by exporting SQL script using MySQL command line or copying MySQL data directory from the original server to the destination server.
Using the second method will cause the stored procedure and function missing. In this article we will discuss how to overcome the situation.
Read more…
Secara default, database driver MySQL CodeIgniter konek ke port default MySQL yaitu 3306. Pada kondisi dimana port MySQL bukan 3306 misalnya 3307, CodeIgniter tidak punya option untuk menentukan pada port berapa MySQL berjalan.
Solusi untuk hal ini dapat dilakukan dengan beberapa cara:
- mengedit file driver database CodeIgniter: system/database/drivers/mysqli/mysqli_driver.php. Pada file ini dapat ditentukan port MySQL pada function ‘db_connect’ yaitu dengan menambahkan parameter $port pada function tsb:
mysqli_connect ( [string $host [, string $username [, string $passwd [, string $dbname [, int $port [, string $socket]]]]]] )
- mengedit file PHP.INI, pada bagian mysql.default_port, ganti dari 3306 menjadi 3307
- jika tidak punya akses ke file PHP.INI, bisa juga dicoba dengan mengedit file config/database.php nya CodeIgniter yaitu pada baris:
$db['default']['hostname'] = "mysqlhost.yourdomain.com:3307";
Categories: CodeIgniter, MySQL, PHP Tags: CodeIgniter, connect, database, database driver, database drivers, driver database, file, file ini, koneksi, MySQL, PHP, port, string
Berikut ini langkah langkah yang perlu diperhatikan ketika membuat aplikasi PHP yang connect ke database PostgreSQL.
Function pg_connect
Langkah pertama adalah memanggil function pg_connect() untuk melakukan koneksi ke database server.
$dbconn = pg_connect ($conn_string);
Read more…
phpMyBackupPro is a tool created using PHP programming language that can be used to perform backup and restore on MySQL database server. In this article we are going to learn how to install and configure this tool, perform manual backup and then perform restore the previously backed up database. We will also learn how to setup an automatic periodic backup using the same tool.
Installation
Installation of this tool is simple. Just download the newest version from http://www.phpmybackuppro.net/download.php.
After downloading, extract the zip file to a directory on your PHP and Apache web server accessible from browser, ie the Document Root, for example C:\XAMPP\HTDOCS. Then you will get a new folder under it, for example C:\XAMPP\HTDOCS\phpMyBackupPro.
That’s it! Now go to your web browser and point the URL of phpMyBackupPro, for example http://localhost/phpMyBackupPro.
Read more…
Categories: MySQL, PHP, Windows Tags: apache web server, backup, browser ie, database, database info, directory, file, manual backup, MySQL, mysql password, periodic, PHP, restore, script, Select, sql command, sql data, table, task, xampp
UNDER CONSTRUCTION , THANK YOU FOR YOUR PATIENCE
Tujuan
1. Membuat database tabel dan alias
2. Membuat dan menggunakan index, menggunakan sorting
- Table Fields, Calculated Fields, Lookup
- Table Searching, Filtering, Range
- Tabel Relations
- Bookmark
- Komponen dan bahasa SQL dinamik
- Fungsi agregat
- Report master detail
Video Tutorial
[video]
Read more…
Konsep Database
· Database: Kumpulan informasi yang tersusun sedemikian rupa sehingga program komputer dapat dengan cepat memilih, mencari, dan menampilkan sebagian data yang diinginkan
· tersusun dari field, record, dan table
· field : bagian terkecil tempat menyimpan informasi
· record : satu set informasi lengkap yang terdiri dari beberapa field
· table : kumpulan dari satu atau lebih record
· Contoh, buku telepon analog dengan sebuah table. Berisi daftar records, yang masing-masing terdiri dari tiga field: nama, alamat, dan nomor telephone.
Read more…
Kasus
Anda mempunyai database PostgreSQL yang sudah berjalan di Windows kemudian ingin direstore ke server PostgreSQL yang berjalan di Linux.
Backup Database Di Windows
- Jalankan PgAdmin III di Windows,
- Pilih database yang mau dipindahkan ke Linux
- Klik kanan pada database, klik Backup

- Isikan filename yaitu nama file backup database, nama file tersebut harus ber-extension .backup
- Pilih option Compress
- Biarkan pilihan lain
- Klik OK
- Tunggu sampai proses selesai
Read more…
Categories: PostgreSQL, Windows Tags: backup, backup database, database, database server, Encoding, Linux, message transfer, port database, PostgreSQL, restore, scp, ssh, Windows, winscp
Recent Comments