Archive for the ‘Uncategorized’ Category

Meta Refresh

Thursday, May 22nd, 2008

<html>

<body>

<META HTTP-EQUIV=”REFRESH” CONTENT=”0;URL=http://192.168.128.82:8080/drupal5/”>

</body>

</html>

CONTENT is a time wating to refresh.

URL is a site name.

Open new tap

Saturday, November 10th, 2007

To day I want open new tap of firefox but I’m not know  when I search by google I found that solve my problem

http://www.mozilla.org/support/firefox/keyboard

this link explain how to use shortcuts to open new tap

Parallel Processing of Large Volume ETL Jobs

Thursday, November 8th, 2007

ETL processing, generally involves copying/moving, transforming, cleaning the records/transactions from one or multiple sources. Most of the batch processing or warehousing projects involve such data processing in millions on daily/weekly basis. Typically, there is a Staging area and production area. Records are cleaned, transformed, filtered and verified from staging to production area. This demands SQL Set theory based queries, parallel processing with multiple processors/CPU. The article focuses on need of SQL Set theory approach and parallel processing while processing large volume of ETL records using programming approach. More »

Replicate Stored Procedure Execution

Monday, November 5th, 2007

Robyn and Phil return with some fresh ideas about how to import text files into SQL Server, without resorting to DTS or SSIS scripting. They go on to show how much can be done in TSQLMore »

Add Items to ListBox C#

Sunday, November 4th, 2007

This code below tell how to add itmes to listbox in C#

for(int i=0;i<10;i++)

{

listBox1.Items.add(i);

}