Langsung ke konten utama

Postingan

SQLEXPRESS tidak bisa create database kalo pake Integrated Security=SSPI;

Jika anda menggunakan "Integrated Security=SSPI;" pada connection string anda maka yang perlu dicermati adalah setting security pada BUILTIN\Users , karena sqlserver akan menggunakan user ini untuk Integrated Security=SSPI. Untuk masalah tidak bisa menghapus database pastikan pada server role hak dbcreator ada pada BUILTIN\Users. Good Luck!
Postingan terbaru

SQLSERVER - Lihat tanggal terakhir dari bulan

Few questions are always popular. They keep on coming up through email, comments or from co-workers. Finding Last Day of Any Month is similar question. I have received it many times and I enjoy answering it as well. I have answered this question twice before here: SQL SERVER – Script/Function to Find Last Day of Month SQL SERVER – Query to Find First and Last Day of Current Month Today, we will see the same solution again. Please use the method you find appropriate to your requirement. Following script demonstrates the script to find last day of previous, current and next month. ----Last Day of Previous Month SELECT DATEADD(s,-1,DATEADD(mm, DATEDIFF(m,0,GETDATE()),0)) LastDay_PreviousMonth ----Last Day of Current Month SELECT DATEADD(s,-1,DATEADD(mm, DATEDIFF(m,0,GETDATE())+1,0)) LastDay_CurrentMonth ----Last Day of Next Month SELECT DATEADD(s,-1,DATEADD(mm, DATEDIFF(m,0,GETDATE())+2,0)) LastDay_NextMonth ResultSet: LastDay_PreviousMonth ———————– 2007-07-31 23:59:59.000 LastDay_Current

Deploy aplikasi ASP.Net MVC pada IIS 6

Aplikasi yang sudah dibuat baik dan dicoba pada built-in server (seperti ASP.Net Development Server milik Ms. Visual Studio 2008) tampak sama sekali tidak ada masalah. Tapi bila anda sudah berhadapan dengan Windows Server 2003 yang menggunakan IIS6, maka hal aneh akan muncul, yaitu halaman yang sudah anda buat tadi tidak ditemukan, browser akan berkata " 404 Not found ". Salah satu solusinya adalah dengan cara membuat wildcard mapping untuk aspnet_isapi.dll "aspnet_isapi.dll" adalah ISAPI filter yang bertugas untuk menangani ASP.Net. Wilcard mapping ini akan membuat IIS6 akan memproses semua permintaan pada server dengan menggunakan ASP.Net tanpa terkecuali!. Caranya adalah: Buka IIS manager, klik kanan aplikasi Anda, pergi ke Properties , kemudian Home Directory tab, kemudian klik Configuration . Setelah Application Configuration muncul maka Buka tab Mappings . Pada sesi Wildcard application maps klik tombol Insert . lalu browse ke directory tempat aspnet_isa

Javascript: Left Pad

function leadingZeros(num, totalChars, padWith) { num = num + ""; padWith = (padWith) ? padWith : "0"; if (num.length < totalChars) { while (num.length < totalChars) { num = padWith + num; } } else {} if (num.length > totalChars) { //if padWith was a multiple character string and num was overpadded num = num.substring((num.length - totalChars), totalChars); } else {} return num; }

Setup Subversion Server di Windows

Download subversion versi terbaru dari tigris.org . Install/Unzip semua file yang ada dari file yang sudah anda download tadi ke lokasi yang anda inginkan, misalnya c:\program files\subversion\. Buka command prompt (ketik cmd dari menu Run ). lalu masuk ke folder dimana letak file svnadmin.exe berada. Jika anda menginstall subversion di c:\program files\subversion\, maka ketikan: Microsoft Windows XP [Version 5.1.2600] (C) Copyright 1985-2001 Microsoft Corp. C:\Documents and Settings\ADIONO>cd c:\program files\subversion\bin  Langkah selanjutnya adalah membuat folder untuk repository, dimana folder inilah yang nantinya akan berperan sebagai server. Misalnya anda ingin menaruh direcory anda di E:\Repo maka yang perlu anda lakukan adalah mengetik perintah dibawah ini: C:\Program Files\Subversion\bin>svnadmin create "E:\Repo" Setelah itu masuk ke server yang sudah anda buat tadi (misal: E:\Repo). Gunakan file explorer untuk i

Please welcome my new born company...

By the inspiration of what the meaning about friends, share the joke and story, then become something that has a lot of meaning in my life, changing and connecting everything then it's call NET!  In 'bahasa' we 'meaning' as ARTI, here's come my new born company, my new meaning of what is the meaning of connecting everything, share everything and give each others... I give this company named " ARTINET "

Bikin ucapan (greetings) menurut waktu pake C#

Selamat Pagi, Selamat Sore, Selamat Malam... itu adalah yang dihasilkan dari kode dibawah ini public enum enLanguage { Indonesian = 0, English = 1 } public static string Greetings(enLanguage bahasa) { string timeSpeak = ""; if (DateTime.Now.Hour >= 0 && DateTime.Now.Hour < 11) { switch (bahasa) { case enLanguage.Indonesian: timeSpeak = "pagi"; break; case enLanguage.English: timeSpeak = "morning"; break; } } else if (DateTime.Now.Hour >= 11 && DateTime.Now.Hour < 15) { switch (bahasa) { case enLanguage.Indonesian: timeSpeak = "siang"; break; case enLanguage.English: timeSpeak = "day"; break; } } else if (DateTime.Now.Hour >= 15 && DateTime.Now.Hour < 19) { swi