August 2007 Entries

Homework

system/rodvin rodney/rodvin Destination Folder: C:\oraclexe\ Port for 'Oracle Database Listener': 1521 Port for 'Oracle Services for Microsoft Transaction Server': 2030 Port for HTTP Listener: 8080 C:\oraclexe\app\oracle\prod... XE = (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = new_rodney)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = XE) ) ) EXTPROC_CONNECTION_DATA = (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = IPC)(KEY...

ISO with no burn

Paul Swanson came across this article that talks about an unsupported capability of MS that allows you to read an ISO file without having to burn to a cd. Not sure if you ever face this, but all the downloads in MSDN pretty much come in iso format. This will take the step out of burning the cd/dvd if you choose not to. I am in the process of using this and it seems to work so far. Enjoy… http://weblogs.asp.net/plel...

AutoNumber And Identity

original articke: http://www.oracle-base.com/... AutoNumber And Identity Functionality Developers who are used to AutoNumber columns in MS Access or Identity columns in SQL Server often complain when they have to manually populate primary key columns using sequences. This type of functionality is easily implemented in Oracle using triggers. First we create a table with a suitable primary key column and a sequence to support it: CREATE TABLE departments ( ID NUMBER(10) NOT NULL,...

Web Parts Overview

http://msdn2.microsoft.com/

convert dataset to excel for a WebForm

protected void lnkBuildExcelReport_Click(o... sender, EventArgs e) { //-------------------------... // //-------------------------... long claimId = long.Parse(this.lblClaimId.... //-------------------------... // //-------------------------... DataSet ds = new DataSet(); //-------------------------... // //-------------------------...