Wednesday, August 7, 2013

Stored Procedure

Stored ProcedureStored Procedure is one of the powerful parts of SQL Server. Basically it is a group of T-SQL statements which is complied and stored inside the SQL Server.As a result we get some advantages like:1. Secure due to encryption.2. We can use repeatedly after once compile.3. Reduces data pass over a network.4. Secured raw data because they are accessible by only stored procedure.Basis Syntax of Stored ProcedureCREATE PROCEDURE Object NameInput parameter DataTypeOutput parameter DataType OutputASBEGIN--Variable Declaration @parameter...

Random Number in SQL

How to generate unique random number in SQL?Random Number in SQLSQL Server has a built-in function to generate random number. The function is RAND(). It is a mathematical function.  It returns a random float value between 0 and 1.  We can also use an optional seed parameter, which is an integer expression (tinyint, smallint or int) that gives the seed or start value.To use it, we need to use a simple SELECT statement as follows:SELECT RAND() AS [RandomNumber]The output of the RAND() function will always be a value between...

Tuesday, August 6, 2013

வேளாளர் சமூகம் ஒரு பார்வை!

     அந்த இளைஞனைப் பார்த்து வெள்ளையர்கள் பயந்துதான் போனார்கள். அவனது அஞ்சா நெஞ்சுரமும் விடுதலை வேட்கையும் கண்டு பரங்கியர் நடுநடுங்கினார்கள். அவனோடு நேருக்குநேர் பேசியோ போரிட்டோ அவனை வெல்லமுடியாது என்று முடிவு கட்டிய வெள்ளையர்கள், அவனை சிறைப் பிடித்தவுடன் தூக்கிலிட்டார்கள். அப்போதும் ஆத்திரம் அடங்கவில்லை. அவன் தலையை வெட்டித் துண்டித்து ஈட்டியில் குத்தி காட்சிப் பொருளாக நடுச்சந்தியில் நட்டு வைத்தார்கள்.    ...

Hello World in Dot net cs

Introductionஇந்த பயிற்சி விசுவல் பேசிக் டாட் நெட் பயன்படுத்தி உங்கள் முதல் பயன்பாட்டை உருவாக்க உதவும். இந்த பயிற்சியில், நாங்கள் "ஹலோ உலகம் Hello World " காண்பிக்கும் ஒரு messageBox ¯ÕÅ¡ì¸Àθ¢ÈÐCode: Public Class Form1    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click        MessageBox.Show("Hello World ஹலோ உலகம் ", "Message...