Wednesday, November 7, 2012

Tutorial Borland Delphi

Malem2 saat ini masih dikantor proses data , sambil tunggu prosesnya selesai lebih baik update blog . buat rekan rekan yang mau belajar delphi , berikut adalah daftar link bacaan untuk agan-agan belajar :

  1. http://www.schwartzman.org.br/simon/delphi/

  2. http://www.jasontpenny.com/Delphi/

  3. http://www.efg2.com/Lab/Library/Delphi/Algorithms/index.html

  4. http://www42.tok2.com/home/okapony/download/

  5. http://www.bloodshed.net/delphi/index.html

  6. http://delphiforfun.org/Programs/Indices/programIndex.htm

  7. http://www.liacs.nl/~svdmaar/hci/

  8. http://www.rl7.bmstu.ru/archives/Delphi/

  9. http://www6.uniovi.es/delphi/ftp/d20free/

  10. http://www.rnikulin.ru/files/programmer/delphi/

  11. http://ftp.newbielabs.com/Delphi%20Gecko%20SDK/

  12. http://www.cesarkallas.net/arquivos/livros/informatica/delphi

  13. http://www.happyarts.com/delphi/

  14. http://www.discom.com/delphi/

  15. http://stmik-banjarbaru.ac.id/unduh_kuliah/index.php?dir=Delphi/Rahmadi%20S.Kom/

  16. http://www.delphisources.ru/pages/faq/master-delphi-7/content/LiB0098.html

  17. http://www.delphi7.nl/index.php

  18. http://www.greecetravel.com/delphi/

  19. http://ftp.riken.jp/pc/simtelnet/win95/delphi/

  20. http://irtfweb.ifa.hawaii.edu/~tcs3/tcs3/vendor_info/

  21. http://ftp.sunet.se/pub/simtelnet/win3/delphi/

  22. http://delphi.icm.edu.pl/

  23. http://zeus.nyf.hu/~bajalinov/my_special/SW/Delphi%20eBooks/Delphi%207/

  24. http://zeus.nyf.hu/~bajalinov/my_special/SW/Delphi%20eBooks/Delphi/

  25. http://leetupload.com/dbindex2/index.php?dir=Win32/Sources/Delphi/

  26. http://koti.mbnet.fi/akini/delphi/dspack/

  27. http://www6.uniovi.es/delphi/ftp/tools/?N=D

  28. http://www.delphiforfun.org/programs/index.htm

  29. http://xmlsoft.org/sources/win32/Delphi/

  30. http://ftp.riken.jp/pc/simtelnet/winxp/delphi/

  31. http://is.njit.edu/pubs/delphibook/

  32. http://pedestre.info/.delphi/

  33. http://dbsvr.clhs.tyc.edu.tw/delphi/

  34. http://www.pedestre.info/

  35. http://ensino.univates.br/~edsonahlert/delphi/

  36. http://printinformatica.com.br/

  37. http://www.koehlke.com/pdf/

  38. http://ftp-developpez.com/delphi/sources/

  39. http://www.helloworld.ru/texts/comp/lang/delphi/


Happy coding.. selamat belajar ya ..tetap semangat...

Tuesday, November 6, 2012

Mencari selisih dua buah tanggal dengan sql server

Apakah anda memerlukan proses perhitungan perbedaan hari, bulan atau tahun di antara dua data tanggal pada SQL Server ? Jika Ya maka anda akan memerlukan fungsi DateDiff untuk keperluan ini.

Fungsi DateDiff SQL Server menghasilkan data angka selisih tanggal dan waktu di antara dua tanggal.

Cara penulisan : DateDiff(datepart, startdate, enddate)

Argument:

  • datepart parameter yang menentukan pada bagian mana bagian tanggal untuk dihitung perbedaanya. Berikut adalah daftar dateparts dan singkatannya.















































    DatepartSingkatan
    Yearyy, yyyy
    quarterqq, q
    Monthmm, m
    dayofyeardy, y
    Daydd, d
    Weekwk, ww
    Hourhh
    minutemi, n
    secondss, s
    millisecondms


  • startdate adalah tanggal awal. startdate adalah sebuah expressi yang menghasilkan tipe data datetime atau smalldatetime atau karakter string dalam format tanggal. Karena akurasi smlldatetime sampai pada menit maka ketika smalldatetime digunakan detik dan milidetik akan bernilai 0.

  • enddate adalah tanggal akhir untuk proses perhitungan. enddate adalah sebuah expressi yang menghasilkan tipe data datetime atau smalldatetime atau karakter string dalam format tanggal.


Tipe data hasil fungsi DateDiff adalah nilai Integer.

Catatan:
startdate dikurangi oleh enddate. Jika startdate lebih kecil dari enddate maka nilai hasil akan negatif.

Contoh:
Contoh berikut menentukan perbedaan dalam hari antara tanggal saat ini dengan tanggal publication pada tabel titles di database pudb pada SQL server.

USE pubs
GO
SELECT DATEDIFF(day, pubdate, getdate()) AS no_of_days
FROM titles
GO

Tuesday, October 23, 2012

Pivot tables in SQL Server. A simple sample.

The other day I was wondering about how to use Pivot tables in SQL Server with SQL, and I didn’t find any simple examples on this. So I had to do my own and I thought I’d share this here and also as to have as a future reference for myself. So let’s start with a fictional scenario.In this case we have lots of vendors who report in their daily income to us, for this we have a simple table that looks like this.

SQL Product Highlight Red Gate Software - SQL Monitor SQL Server performance monitoring and alerting - SQL Monitor offers an easy entrance to advanced server monitoring with a simple design that's a refreshing change from the status quo. Red Gate have added custom metrics and user roles to the product without spoiling its ease-of-use, to help you answer that timeless question, 'How healthy are your servers?' Learn more! SQL Server Jobs SQL BI Developer Fort Mill, SC Salary = $70-90K Industry = Financial SQL Developer Portland, OR Salary = $70-75K Industry = Benefits solutions provider Review all opportunities Crosstab queries using PIVOT in SQL Server

Problem


In SQL Server 2000 there was not a simple way to create cross-tab queries, but a new option first introduced in SQL Server 2005 has made this a bit easier. We took a look at how to create cross-tab queries in SQL Server 2000 in this previous tip and in this tip we will look at this new feature to allow you produce cross-tab results.

Fix : Error : Incorrect syntax near . You may need to set the compatibility level of the current database to a higher value to enable this feature. See help for the stored procedure sp_dbcmptlevel

have seen developer confused many times when they receive following error message.

Msg 325, Level 15, State 1, Line 7
Incorrect syntax near . You may need to set the compatibility level of the current database to a higher value to enable this feature. See help for the stored procedure sp_dbcmptlevel.

Friday, October 19, 2012

Curhat SQL akhir pekan

Wow data yang tersimpan didatabase tidaklah berguna jika tidak bisa mengelolanya . misalkan manajemen mau minta laporan detail dari tahun 2011 s/d 2012 ,diurutkan pertahun, persemester, perquartal, perbulan dan perminggu.. belum lagi master distributornya terpisah, harganya juga terpisah cuma diambil yang paling update aja, trus ada tabel discount juga per item beda2 tiap distributor
Nah loh... gimana ya querynya ??

Wednesday, October 17, 2012

mencari minggu ke berapa di suatu bulan di SQL Server

Dalam pembuatan laporan penjualan biasanya dipilih dari periode tertentu misalkan dari tanggal berapa hingga tanggal berapa, perbulan  dan seterusnya. yang sering diminta dari laporan penjualan adalah laporan per minggu, nah bagaimana kita menentukan suatu tanggal transaksi itu masuk minggu ke berapa. ternyata di sql server ada cara mudahnya