Monday, May 6, 2013

Online database sybase


Untuk mengaktifkan database sybase yang baru direstore kita dapat melakukannya dengan cara menjalankan fungsi online database. Adapun penjelasan mengenai fungsi online database sybase dapat dilihat pada penjelasan berikut ini :

Description

Marks a database available for public use after a normal load sequence; if needed, upgrades a loaded database to the current version of Adaptive Server; brings a database online after loading a transaction log dumped with the for standby_access option.

Syntax


online database database_name [for standby_access]

Parameters


database_name
specifies the name of the database to be brought online.

for standby_access
brings the database online on the assumption that the database contains no open transactions.

Examples


Example 1

Makes the pubs2 database available for public use after a load sequence completes:

online database pubs2

Example 2

Brings the database inventory_db online. Used after loading inventory_db with a transaction-log dump obtained through dump tran...with standby_access:

online database inventory_db for standby_access

Usage


  • online database brings a database online for general use after a normal database or transaction log load sequence.
  • When load database is issued, the database’s status is set to “offline.” The offline status is set in the sysdatabases system table and remains set until online database completes.
  • Do not issue online database until all transaction logs are loaded. The command sequence is:
    • load database
    • load transaction (there may be more than one load transaction)
    • online database
  • If you execute online database against a currently online database, no processing occurs and no error messages are generated.
  • You can only use online database...for standby_access with a transaction log that was dumped using dump transaction...with standby_access. If you use online database...for standby_access after loading a transaction log that was dumped without using dump transaction...with standby access, online database generates an error message and fails.
  • You can use sp_helpdb to find out whether a database is currently online, online for standby access, or offline.


Upgrading databases


  • online database initiates, if needed, the upgrade of a loaded database and transaction log dumps to make the database compatible with the current version of Adaptive Server. After the upgrade completes, the database is made available for public use. If errors occur during processing, the database remains offline.
  • online database is required only after a database or transaction log load sequence. It is not required for new installations or upgrades. When you upgrade Adaptive Server to a new version, all databases associated with that server are automatically upgraded.
  • online database only upgrades version 11.9 or later user databases.
  • After you upgrade a database with online database, dump the newly upgraded database to create a dump that is consistent with the current version of Adaptive Server. You must dump the upgraded database before you can issue a dump transaction command.

Friday, April 5, 2013

Get the count of rows selected

long ll_Selected

ll_Selected = &
  long(dw_1.describe("evaluate('sum( if(isselected(), 1, 0) for all)',1)"))
 
 
Source : http://www.rgagnon.com/pbdetails/pb-0183.html 

Get Page Number of the Report

Put the datawindow into print preview mode
dw_1.modify &
  ( 'datawindow.print.preview=yes' )
Get the result of the 'PageCount()' expression
ll_PageCount = &
   long ( dw_1.describe &
     ("evaluate('pagecount()'," + string ( dw_1.rowcount() ) + ")"))

Menjalankan Winrar dengan Command Line Window


This section provides a tutorial example on how to run WinRAR in a command line window.
   

WinRAR also support command line operations. This is important to allow users to incorporate WinRAR commands into automated scripts. Here is a simple script I used to backup a directory, backup.bat:

@rem backup.bat
@rem Usage: backup directory zipfile password

\local\winrar\winrar a -afzip -r -p%3 %2.zip %1\*.*

My restore script is also very simple, restore.bat:

@rem restore.bat
@rem Usage: restore zipfile password

\local\winrar\winrar x -p%2 %1.zip .\

Note that:

    Command "a" is to create archive files.
    Option "-afzip" is to create archive files in ZIP format.
    Option "-r" is to take input files recursively to include sub-directories.
    Option "-p*" is to add password protection to archive files.
    Command "x" is to extract files out of archive files.

For complete description of the command line interface of WinRAR, see the WinRAR help document.

Source : © 2008 by Dr. Herong Yang.
All rights reserved.

Using the WinRAR Command-line tools in Windows

This guide describes the use of the WinRAR command-line tools for compressing and uncompressing files in a directory and their use in batch files. This guide is an extension of a previous post, Automate Zipping Tasks using the Command-line Interface that covered the use of the command-line tools for two free compression utilities, IZArc and 7-Zip. The information was tested on a Windows PC running Vista.

compress

WinRAR is a popular and powerful archive manager that can be used from the command-line or with scripting languages such as batch files. It includes two command-line tools, rar.exe and unrar.exe, where rar.exe compresses and unrar.exe uncompresses files. Both are located in the “C:\Program Files\WinRAR” folder in the installable version. Although WinRAR is shareware, it can be used on a trial basis for 40 days. Using WinRAR’s command-line tools is similar to those for IZArc and 7-Zip. The syntax for using the WinRAR executables is:

WinRAR <command> -<switch1> -<switchN> <archive> <files...> <@listfiles...> <path_to_extract\>

Examples to compress a folder:

rar a -r yourfiles.rar *.txt c:\yourfolder

creates archive yourfiles.rar and compresses all .txt files in c:\yourfolder and all its subfolders

rar a yourfiles

creates archive yourfiles.rar and compresses all files in the current folder, but doesn’t include subfolders (note lack of extension; WinRAR will use the default extension .rar)

“a” command adds to the archive

“-r”  switch recurses subfolders
Examples to uncompress a folder:

unrar x c:\yourfile.rar *.gif c:\extractfolder\

extracts all *.gif files from yourfile.rar to c:\extractfolder\ (trailing backslash required) and restores the folder structure

unrar e c:\yourfile.rar

extracts all files in c:\yourfile.rar to the current folder (folder structure ignored)

“x” command extracts with full paths

“e” command extracts and ignores paths

Basic rules for WinRAR:

    When files or listfiles are not specified, all files in the current folder are processed
    When specifying all files in a folder, yourfolder or yourfolder\*.* are equivalent
    Folder structures are automatically saved in archives (but not automatically extracted)
    WinRAR uses the .rar extension by default, but that can be overridden by specifying the zip extension in the archive name
    Switches and commands are not case sensitive and can be written in either upper or lower case

Another point is that WinRAR doesn’t appear to use the Windows path environment variable, so it must be specified either at a command prompt, set permanently in the environment variable settings, or specified in a batch file.

To set the Windows path environment variable temporarily at a command prompt or in a batch file, use the following command:

set path="C:\Program Files\WinRAR\";%path%

To set it permanently in the Windows path for your PC:

start–>Control Panel–>System–>Advanced system settings–>Advanced Tab–>Environment Variables–>System Variables–>Path–>Edit. Add the path ;C:\Program Files\WinRAR; to the end (don’t forget the single semicolons at the beginning and end). Hit OK three times.
Using WinRAR in Batch Files:

Two batch file examples are provided. The first compresses all files in a folder or a folder and its subfolders, with the option to compress the files into a single archive or individually. The second batch file decompresses all .rar files from a folder and places the extracted files into another directory. Be sure to change the extension(s) to .bat before using either file. Both of the following batch files temporarily set the Windows path environment variable for the WinRAR folder when executed.


Source : http://comptb.cects.com/2503-using-the-winrar-command-line-tools-in-windows

Thursday, February 21, 2013

Mengenal Istilah Root Dalam Android

Sebelum anda untuk melakukan teknik root terhadap perangkat Android anda, mungkin kami perlu jelaskan dulu apa sih Fungsi root bagi perangkat Android anda. Teknik Root adalah salah satu cara untuk mengakses penuh ke sistem Android., yang dalam iOS dikenal dengan istilah JailBreak.
Melakukan Root terhadap perangkat Android pada dasarnya cukup aman namun jika anda lakukan dengan benar dan dengan proses yang benar. Proses root tidak dapat menghapus data yang ada pada smartphone andorid anda. Namun sebagai langkah antisipasi, sebelum anda melakukan proses root terhadap perangkat SmartPhone anda sebaiknya anda pastikan bahwa perangkat anda dalam keadaan prima, dan yang lebih penting sebaiknya anda backup semua data terlebih dahulu.

1.Apa itu root ?
Root adalah suatu system account yang memiliki kekuasaan absolut untuk mengakses dan mengeksekusi semua file, command, system, dalam sistem operasi berbasis linux. Intinya, root ini punya akses tak terbatas yang bisa mengubah, menghapus, menambah, bahkan merusak semua yang ada didalam sistem hape kita. Nge-root artinya nge-hack sistem hape supaya kita (pemilik dan pengguna hape) punya akses ke account root tersebut,jadi kitalah yang punya kekuasaan.

2.Apakah HP Android harus diroot dulu ?
Tidak, tergantung kebutuhan pemakai, tidak disarankan untuk yg belum mengerti betul Android.


3.Apa Gunanya nge-root pada HP Android ?

Gunanya hp Android di Root
1. Akses yang tak terbatas terhadap system Android
2. Instalasi aplikasi di memory card dan install aplikasi yang butuh root pastinya
3. Un-install aplikasi-aplikasi bawaan vendor
4. Backup App+System
5. Instalasi ROM custom
6. Akses terhadap file-file sistem Android secara penuh
7. Overclock processor yang secara keseluruhan meningkatkan performa (tapi membuat konsumsi baterai jadi lebih boros)



4.Apa bisa dikembalikan ke unroot (seperti semula) lagi?
Bisa


5.Apakah rooting dapat menghilangkan garansi ?
Bisa dibilang Iya bisa dibilang Tidak


6.Kenapa rooting bisa ya dan bisa tidak menghilangkan Garansi ?
Ada yang bilang kalau nge-root hape bakalan ngilangin garansi. Ada juga yang bilang ga ada pengaruhnya sama garansi. Tapi Kalaupun bisa ngilangin garansi, hape yang udah di-root tinggal di-unroot aja dan semua kembali seperti semula. Jadi Intinya kalo bisa di unroot berarti ga akan ngilangin garansi . Oiya, nge-root ga bakalan bikin hape rusak.


7.Bagaimana cara Root Pada Android

Mending jadi Anggota DPR

Ini Rincian Penghasilan Anggota DPR :

TRIBUNNEWS.COM--Berdasarkan Surat Edaran Setjen DPR RI No. KU.00/9414/DPR RI/XII/2010 tentang Gaji Pokok dan Tunjangan Anggota DPR, total take home pay untuk anggota DPR yang merangkap ketua alat kelengkapan adalah Rp 54,9 juta. Sedangkan gaji untuk anggota DPR yang merangkap anggota alat kelengkapan adalah Rp 51,5 juta.
Total take home pay anggota DPR yang merangkap ketua alat kelengkapan adalah Rp 54,9 juta, dan untuk anggota DPR yang merangkap anggota alat kelengkapan adalah Rp 51,5 juta.
Sebagi pembanding, gaji dari anggota DPR tahun 2004 - 2009 gaji bulanan Rp 46.100.000. Namun ditambah biaya tunjangan, biaya reses, dan gaji ke-13, setiap anggota DPR RI per tahun kira-kria mencapai Rp 1 miliar per tahun.
Berikut Rincian Gaji DPR RI Masa Bhakti 2004 - 2009
Rutin perbulan meliputi :
Gaji pokok : Rp 15.510.000
Tunjangan listrik : Rp 5.496.000
Tunjangan Aspirasi : Rp 7.200.000
Tunjangan kehormatan : Rp 3.150.000
Tunjangan Komunikasi : Rp 12.000.000
Tunjangan Pengawasan : Rp 2.100.000
Total : Rp 46.100.000/bulan
Total per tahun : Rp 554.000.000
Masing-masing anggota DPR mendapatkan gaji yang sama. Sedangkan penerimaan nonbulanan atau nonrutin. Dimulai dari penerimaan gaji ke-13 setiap bulan Juni.
Gaji ke-13 : Rp 16.400.000
Dana penyerapan (reses) : Rp 31.500.000
Dalam satu tahun sidang ada empat kali reses jika ditotal selama pertahun totalnya sekitar Rp 118.000.000 setahun. Sementara penghasilan yang bersifat sewaktu-waktu yaitu:
Dana intensif pembahasan rancangan undang-undang dan honor melalui uji kelayakan dan kepatutan sebesar Rp 5.000.000/kegiatan
Dana kebijakan intensif legislative sebesar Rp 1.000.000/RUU
Jumlah keseluruhan yang diterima anggota DPR dalam setahun mencapai hampir Rp 1 milyar. Data tahun 2006 jumlah per tahun dana yang diterima anggota DPR mencapai Rp 761.000.000, dan tahun 2007 mencapai Rp 787.100.000.
Fasilitas anggota DPR RI, 2004-2009
A. Gaji pokok dan tunjangan
1. Rp 4.200.000/bulan
2. Tunjangan
a. Jabatan Rp 9.700.000/ bulan
b. Uang paket Rp 2.000.000/bulan
c. Beras Rp 30.090/jiwa/ bulan
d. Keluarga:
Suami/istri (10% X Gaji pokok Rp 420.000/bln)
Anak (25 X Gaji pokok Rp 84.000/jiwa/ bulan)
e. Khusus pph, pasal 21 Rp 2.699.813
B. Penerimaan lain-lain
1. Tunjangan kehormatan Rp 3.720.000/bulan
2. Komunikasi intensif Rp 4.140.000/bulan
3. Bantuan langganan listrik dan telepon Rp 4.000.000
4. Pansus Rp 2.000.000/undang- undang per paket
5. Asisten anggota (1 orang Rp 2.250.000/bulan)
6. Fasilitas kredit mobil Rp 70.000.000/orang/ per periode
C. Biaya perjalanan
1. Paket pulang pergi sesuai daerah tujuan masing-masing
2. Uang harian:
a. Daerah tingkat I Rp 500.000/hari
b. Derah tingkat II Rp 400.000/hari
3. Uang representasi:
a. Daerah Tingkat I Rp 400.000
b. Daerah Tingkat II Rp 300.000
(keterangan: lamanya perjalanan sesuai program kerja, dan sebanyak-banyaknya 7 hari untuk kunjungan kerja per orangan, dan 5 hari untuk kunjungan kerja tim komisi/gabungan komisi)
D. Rumah jabatan
1. Anggaran pemeliharaan
- RJA Kalibata, Jakarta Selatan Rp 3.000.000/rumah/ tahun
- RJA Ulujami, Jakarta Barat Rp 5.000.000/rumah/ tahun
2.. Perlengkapan rumah lengkap
E. Perawatan kesehatan uang duka dan biaya pemakaman
1. Biaya pengobatan (oleh PT Askes)
- Anggota DPR, suami/anak kandung/istri dan atau anak angkat dari anggota yang bersangkutan.
- Jangkauan pelayanan nasional:
Diprovider di seluruh Indonesia yang ditunjuk termasuk provider ekslusif untuk rawat jalan dan rawat inap.
2. Uang duka :
- wafat (3 bulan X gaji)
- tewas (6 bulan x gaji)
3. Biaya pemakaman Rp 1.050.000/orang
F. Pensiunan
1. Uang pensiun (60% x gaji pokok) Rp 2.520.000/bulan
2. Tunjangan beras Rp 30.090/jiwa/ bulan.
(Sumber/dokumentasi tribun/diolah)