Translate

Thursday, 4 July 2013

Tips to improve SQL Server database design and performance


Design Patterns Tutorial - For Beginners & Professionals 

http://www.dotnet-tricks.com/Tutorial/designpatternslist


Tips to improve SQL Server database design and performance

  1. Choose Appropriate Data Type

    Choose appropriate SQL Data Type to store your data since it also helps in to improve the query performance. Example: To store strings use varchar in place of text data type since varchar performs better than text. Use text data type, whenever you required storing of large text data (more than 8000 characters). Up to 8000 characters data you can store in varchar.
  2. Avoid nchar and nvarchar

    Does practice to avoid nchar and nvarchar data type since both the data types takes just double memory as char and varchar. Use nchar and nvarchar when you required to store Unicode (16-bit characters) data like as Hindi, Chinese characters etc.
  3. Avoid NULL in fixed-length field

    Does practice to avoid the insertion of NULL values in the fixed-length (char) field. Since, NULL takes the same space as desired input value for that field. In case of requirement of NULL, use variable-length (varchar) field that takes less space for NULL.
  4. Avoid * in SELECT statement

    Does practice to avoid * in Select statement since SQL Server converts the * to columns name before query execution. One more thing, instead of querying all columns by using * in select statement, give the name of columns which you required.
    1. -- Avoid
    2. SELECT * FROM tblName
    3. --Best practice
    4. SELECT col1,col2,col3 FROM tblName
  5. Use EXISTS instead of IN

    Does practice to use EXISTS to check existence instead of IN since EXISTS is faster than IN.
    1. -- Avoid
    2. SELECT Name,Price FROM tblProduct
    3. where ProductID IN (Select distinct ProductID from tblOrder)
    4. --Best practice
    5. SELECT Name,Price FROM tblProduct
    6. where ProductID EXISTS (Select distinct ProductID from tblOrder)
  6. Avoid Having Clause

    Does practice to avoid Having Clause since it acts as filter over selected rows. Having clause is required if you further wish to filter the result of an aggregations. Don't use HAVING clause for any other purpose.
  7. Create Clustered and Non-Clustered Indexes

    Does practice to create clustered and non clustered index since indexes helps in to access data fastly. But be careful, more indexes on a tables will slow the INSERT,UPDATE,DELETE operations. Hence try to keep small no of indexes on a table.
  8. Keep clustered index small

    Does practice to keep clustered index as much as possible since the fields used in clustered index may also used in nonclustered index and data in the database is also stored in the order of clustered index. Hence a large clustered index on a table with a large number of rows increase the size significantly. Please refer the article Effective Clustered Indexes
  9. Avoid Cursors

    Does practice to avoid cursor since cursor are very slow in performance. Always try to use SQL Server cursor alternative. Please refer the article Cursor Alternative.
  10. Use Table variable inplace of Temp table

    Does practice to use Table varible in place of Temp table since Temp table resides in the TempDb database. Hence use of Temp tables required interaction with TempDb database that is a little bit time taking task.
  11. Use UNION ALL inplace of UNION

    Does practice to use UNION ALL in place of UNION since it is faster than UNION as it doesn't sort the result set for distinguished values.
  12. Use Schema name before SQL objects name

    Does practice to use schema name before SQL object name followed by "." since it helps the SQL Server for finding that object in a specific schema. As a result performance is best.
    1. --Here dbo is schema name
    2. SELECT col1,col2 from dbo.tblName
    3. -- Avoid
    4. SELECT col1,col2 from tblName
  13. Keep Transaction small

    Does practice to keep transaction as small as possible since transaction lock the processing tables data during its life. Some times long transaction may results into deadlocks. Please refer the article SQL Server Transactions Management
  14. SET NOCOUNT ON

    Does practice to set NOCOUNT ON since SQL Server returns number of rows effected by SELECT,INSERT,UPDATE and DELETE statement. We can stop this by setting NOCOUNT ON like as:
    1. CREATE PROCEDURE dbo.MyTestProc
    2. AS
    3. SET NOCOUNT ON
    4. BEGIN
    5. .
    6. .
    7. END
  15. Use TRY-Catch

    Does practice to use TRY-CATCH for handling errors in T-SQL statements. Sometimes an error in a running transaction may cause deadlock if you have no handle error by using TRY-CATCH. Please refer the articleException Handling by TRY…CATCH
  16. Use Stored Procedure for frequently used data and more complex queries

    Does practice to create stored procedure for quaery that is required to access data frequently. We also created stored procedure for resolving more complex task.
  17. Avoid prefix "sp_" with user defined stored procedure name

    Does practice to avoid prefix "sp_" with user defined stored procedure name since system defined stored procedure name starts with prefix "sp_". Hence SQL server first search the user defined procedure in the master database and after that in the current session database. This is time consuming and may give unexcepted result if system defined stored procedure have the same name as your defined procedure.

http://www.dotnet-tricks.com/Tutorial/sqlserver/bM6H260812-Tips-to-improve-SQL-Server-database-design-and-performance.html


Friday, 21 June 2013

Useful links

சில பயனுள்ள இனையத்தளங்கள்!

சான்றிதழ்கள்

1) பட்டா / சிட்டா அடங்கல்
http://taluk.tn.nic.in/edistrict_certificate/land/chitta_ta.html?lan=ta

2) அ-பதிவேடு விவரங்களை பார்வையிட
http://taluk.tn.nic.in/eservicesnew/land/areg_ta.html?lan=ta

3) வில்லங்க சான்றிதழ்
http://www.tnreginet.net/igr/webAppln/EC.asp?tams=0

4) பிறப்பு மற்றும் இறப்பு சான்றிதழ்
http://www.tn.gov.in/appforms/birth.pdf

http://www.tn.gov.in/appforms/death.pdf

5) சாதி சான்றிதழ் / வாரிசு சான்றிதழ்
http://www.tn.gov.in/appforms/cert-community.pdf

6) இருப்பிட மற்றும் வருமான சான்றிதழ்
http://www.tn.gov.in/appforms/cert-income.pdf

C. E-டிக்கெட் முன் பதிவு

1) ரயில் மற்றும் பஸ் பயண சீட்டு
http://tnstc.ticketcounters.in/TNSTCOnline/

http://www.irctc.co.in/

http://www.yatra.com/

http://www.redbus.in/

2) விமான பயண சீட்டு
http://www.cleartrip.com/

http://www.makemytrip.com/

http://www.ezeego1.co.in/

D. E-Payments (Online)

1) BSNL தொலைபேசி மற்றும் Mobile Bill கட்டணம் செலுத்தும் வசதி
http://portal.bsnl.in/portal/aspxfiles/login.aspx

2) Mobile ரீ- சார்ஜ் மற்றும் டாப் அப் செய்யும் வசதி
https://www.oximall.com/

http://www.rechargeitnow.com/

http://www.itzcash.com/

3) E.B. Bill கட்டணம் செலுத்தும் வசதி
http://www.itzcash.com/

https://www.oximall.com/

http://www.rechargeitnow.com/

4) NEFT / RTGS மூலம் பிறர் ACCOUNT ‘க்கு பணம் மாற்றும் வசதி

5) E-Payment செய்து வேண்டிய பொருள் வாங்கும் வசதி
http://www.ebay.co.in/

http://shopping.indiatimes.com/

http://shopping.rediff.com/shopping/index.html

6) Share Market – பங்குச் சந்தையில் On-Line வணிகம் செய்யும் வசதி
http://www.icicidirect.com/

http://www.hdfcsec.com/

http://www.religareonline.com/

http://www.kotaksecurities.com/

http://www.sharekhan.com/

E. கல்வி மற்றும் வேலை வாய்ப்பு சார்ந்த சேவைகள் (Online)

1) மாணவர்கள் மேற்படிப்புக்கான வங்கிக் கடன் விவரங்கள் மற்றும் விண்ணப்பங்கள்
https://www.sbi.co.in/user.htm?action=viewsection&lang=0&id=0%2C1%2C20%2C118

http://www.indianbank.in/education.php

http://www.iob.in/vidya_jyothi.aspx

http://www.bankofindia.com/eduloans1.aspx

http://www.bankofbaroda.com/pfs/eduloans.asp

http://www.axisbank.com/personal/loans/studypower/Education-Loan.asp

http://www.hdfcbank.com/personal/loans/educational_loan/el_indian/el_indian.htm

2) பள்ளி மற்றும் கல்லூரி தேர்வு முடிவு / மதிப்பெண் பற்றிய தகவல் அறிந்துக் கொள்ளும் வசதி
http://www.tn.gov.in/dge/

http://www.tnresults.nic.in/

http://www.dge1.tn.nic.in/

http://www.dge2.tn.nic.in/

http://www.Pallikalvi.in/

http://www.results.southindia.com/

http://www.chennaionline.com/results

3) சமச்சீர் கல்வி பாட புத்தகங்களை பதிவிறக்கம் செய்ய
http://www.tn.gov.in/dge

4) இனையதளங்கள் மூலமாக 10th, 12th Std பாடங்களை கற்றுக்கொள்ளும் வசதி
http://www.classteacher.com/

http://www.lampsglow.com/

http://www.classontheweb.com/

http://www.edurite.com/

http://www.cbse.com/

5) 10th & 12th வகுப்பிற்கான அரசு தேர்வு மாதிரி கேள்வி தாள்கள் மற்றும் பாடங்களை படிக்க அல்லது பதிவிறக்கம் செய்ய
http://www.kalvisolai.com/

6) UPSC/ TNPSC/ BSRB / RRB / TRB க்கான பயிற்சி, தேர்வு மற்றும் வேலை 
வாய்ப்புகள் பற்றிய தகவல் அறிந்துக் கொள்ளும் வசதி
http://www.tnpsc.gov.in/

http://www.upsc.gov.in/

http://upscportal.com/civilservices/

http://www.iba.org.in/

http://www.rrcb.gov.in/

http://trb.tn.nic.in/

7) உள் நாடு மற்றும் உலக நாடுகளில் வேலை வாய்ப்புகள் பற்றிய தகவல் அறிந்துக் கொள்ளும் வசதி, பதிவு செய்து விண்ணப்பிக்கும் வசதி
http://www.employmentnews.gov.in/

http://www.omcmanpower.com/

http://www.naukri.com/

http://www.monster.com/
.இந்திய ராணுவத்தில் வேலை வாய்ப்புகள் அறிய
http://www.ssbrectt.gov.in/

http://bsf.nic.in/en/career.html

http://indianarmy.nic.in/

9) இந்திய கப்பல் படையில் பயிற்சி மற்றும் வேலை வாய்ப்புகள் அறிய
http://nausena-bharti.nic.in/

10) Face to Face chat / Interview நேர்காணல் செய்யும் வசதி
http://www.skype.com/

http://www.gmail.com/

http://www.yahoochat.com/

http://www.meebo.com/

F. கணினி பயிற்சிகள் (Online)

1) அடிப்படை கணினி பயிற்சி
http://www.homeandlearn.co.uk/

http://www.intelligentedu.com/

http://www.ehow.com/about_6133736_online-basic-computer-training.html

2) சிறார்களுக்கு கணினி பயிற்சி
http://www.ehow.com/video_5846782_basic-computer-training-children.html

3) இ – விளையாட்டுக்கள்
http://www.zapak.com/

http://www.miniclip.com/

http://www.pogo.com/

http://www.freeonlinegames.com/

http://www.roundgames.com/

4) ப்ரௌசிங், இ-மெயில், சாட்டிங், வெப் கான்ஃபெரென்ஸ், தகவல் தேடுதள்
http://www.google.com/

http://www.wikipedia.com/

http://www.hotmail.com/

http://www.yahoo.com/

http://www.ebuddy.com/

http://www.skype.com/

G. பொது சேவைகள் (Online)

1) தகவல் அறியும் உரிமை சட்டம்
http://rti.gov.in/

http://www.rtiindia.org/forum/content/

http://rti.india.gov.in/

http://www.rti.org/

2) சுற்றுலா மற்றும் முக்கிய தலங்கள் பற்றிய தகவல் பெறும் வசதி
http://www.incredibleindia.org/

http://www.india-tourism.com/

http://www.theashokgroup.com/

http://www.smartindiaonline.com/

3) திருமணம் புரிய விரும்புவோர் இணையதளங்கள் மூலமாக பதிவு செய்து தங்கள் வாழ்க்கை துணையை தேடி தேர்வு செய்யும் வசதி
http://www.tamilmatrimony.com/

http://kalyanamalai.net/

http://www.bharatmatrimony.com/

http://www.shaadi.com/

4) குழந்தைகளுக்கான தமிழ் பெயர்களை அர்த்ததோடு பார்க்கவும் மற்றும் தமிழ் அகராதி, தமிழ் புத்தகங்களை பார்க்க மற்றும் பதிவிறக்கம் செய்ய
http://www.tamilcube.com/

5) ஜாதகம் மற்றும் ராசிபலனை அறிந்துக் கொள்ள
http://www.koodal.com/

http://freehoroscopesonline.in/horoscope.php

6) இனையதளம் மூலமாக இந்தியாவில் எந்த ஒரு மொபைலுக்கும் இலவசமாக SMS அனுப்பும் வசதி
http://www.way2sms.com/

7) இனையதளம் மூலமாக உங்களுக்கு தேவையான VIDEO படங்களை தேடி கண்டு மகிழலாம்
http://www.youtube.com/
இனையதளம் மூலமாக உங்களுக்கு தேவையான தொழில் / வர்த்தகம் மற்றும் ஸ்தாபனங்கின் முகவரி / தொலைபேசி தகவல்கலை இலவசமாக தேடி தெரிந்து கொள்ளலாம்
http://www.justdial.com/

9) இனையதளம் மூலமாக உங்களுக்கு தேவையான மொழியில் தினசரி / வார நாளிதல்களை இலவசமாக வாசித்து செய்திகளை அறியலாம்
http://www.dinamalar.com/

http://www.dinamani.com/

http://www.dailythanthi.com/

http://www.tamilnewspaper.net/

http://www.vikatan.com/

http://www.puthiyathalaimurai.com/

http://www.nakkheeran.in/

10) இனையதளம் மூலமாக உங்களுக்கு தேவையான தொலைக்காட்சியில் ஒளிபரப்பாகும் நிகழ்ச்சிகளை நேரலையாக இலவசமாக கண்டு மகிழலாம்
http://puthiyathalaimurai.tv/new/

http://www.bbc.co.uk/

11) SPEED POST மூலமாக நீங்கள் அனுப்பும் தபால்களை இந்திய தபால் துறையின் இனையதளம் மூலமாக தபால் சேர்ந்த விவரம் அறியலாம்
http://services.ptcmysore.gov.in/Speednettracking/Track.aspx

12) இந்திய தபால் துறையின் INTERNATIONAL SPEED POST / ELECRTONIC MONEY ORDER / REGISTERED POST / EXPRESS PARCEL / E-VPP சேவைகளை தபால் துறையின் இனையதளம் மூலமாக விவரம் அறியலாம்.
http://www.indiapost.gov.in/tracking.aspx

H. மென்பொருள் (Software) பதிவிறக்கம் செய்ய

1) இனையதளம் மூலமாக உங்களுக்கு தேவையான மென்பொறுளை இலவசமாக பதிவிறக்கம் செய்து உபயோகிக்கலாம்
http://www.filehippo.com/

I. வணிகம் (Economy)

1) தமிழ் நாட்டின் இன்றைய தங்கம் மற்றும் வெள்ளியின் விலை விவரம் அறியலாம்
http://www.goldenchennai.com/

http://www.rates.goldenchennai.com/

http://www.bullionrates.in/p/live-bullion-rates.html

2) வெளிநாட்டின் பணமதிப்புக்கு இந்திய ரூபாயின் அன்றைய மாற்றத்தக்க மதிப்பை அறியலாம்
http://www.gocurrency.com/

http://www.xe.com/

H. அரசு சார்ந்த விண்ணப்ப படிவங்கள் (Online)

1) பாஸ்போர்ட் விண்ணப்பம்
http://www.passport.gov.in/

2) பட்டதாரிகள் அரசு வேலைவாய்ப்பிற்கு பதிவு செய்ய
http://www.tn.gov.in/services/employment.html

J. அரசு நலத் திட்ட படிவங்கள் (Online)

1) குடும்ப அட்டை
http://www.tn.gov.in/appforms/ration.pdf

2) மகளிர் சுய வேலை வாய்ப்பு திட்டத்தின் கீழ் வங்கிக் கடன் பெறுவதற்கான விண்ணப்பம்
http://www.tn.gov.in/tamiltngov/appforms/socialwelfare/wses_bankloan_form.pdf

3) பெண்கள் திருமணத்திற்கு கோரப்படும் உதவித் தொகை விண்ணப்பம் மற்றும் பெண் குழந்தை பாதுகாப்பு திட்டம்
http://www.tn.gov.in/tamiltngov/appforms/socialwelfare/socialwelfareschemes.pdf

4) நலிந்தோர் குடும்ப நல நிதியுதவி பெருவதற்கான மனு
http://www.tn.gov.in/tamiltngov/appforms/pdf-drs.pdf

5) ஆதரவற்ற முதியோர் / விதவைகள் / கணவனால் கைவிடப்பட்ட பெண்கள் / உடல் ஊனமுற்றோர் உதவி தொகைக்கான மனு
http://www.tn.gov.in/tamiltngov/appforms/pdf-oap.pdf

http://www.tn.gov.in/schemes/swnmp/social_security_net.pdf

6) புல எல்லை அளந்து அத்து காட்டக் கோருவதற்கான விண்ணப்பம்
http://www.tn.gov.in/tamiltngov/appforms/pdf-boundary.pdf

7) திருமணப்பதிவிற்கான குறிப்பாவணம் மற்றும் விண்ணப்ப படிவம்
http://www.tnreginet.net/english/Applforms/appln3.doc

http://www.tnreginet.net/english/Applforms/compulsory_marriage/Comp_Marriage_Application_Tamil.pdf
பட்டா பதிவு மாற்றம் கோருவதற்கான விண்ணப்ப படிவம் – சாதாரண பெயர் மாற்றம் / உட்பிரிவு மாற்றம்
http://www.tn.gov.in/tamiltngov/appforms/pdf-patta-transfer.pdf

K. விவசாய சந்தை சேவைகள் (Online)

1) தேசிய அளவிலான விற்பனை நிலவரம்
http://agmarknet.nic.in/

2) பதிவு செய்து தினசரி சந்தை விலைகளை பெறும் வசதி
http://indg.in/agriculture/e2030aci-nya2039-aea3153oiTM-moo2039/

3) தோட்டப்பயிரகளின் சந்தை நிலவரம்
http://nhb.gov.in/OnlineClient/categorywiseallvarietyreport.aspx

4) முக்கிய வியாபாரிகள் பற்றிய விவரம்
http://indg.in/agriculture/major-traders-database/

5) தமிழ்நாட்டில் உள்ள விவசாய அமைப்புகள் / சங்கங்கள்
http://indg.in/agriculture/database-of-growers-federations-farmers-associations-in-tamil-nadu/

6) கொள்முதல் விலை நிலவரம்
http://www.tnsamb.gov.in/price/login.php

7) ஒழுங்குமுறை விற்பனை கூடம்
http://www.tnsamb.gov.in/mktcom.php
தினசரி சந்தை விற்பனை விலை நிலவரம்
http://59.90.246.98/pricelist/

9) வானிலை செய்திகள்
http://services.indg.in/weather-forecast/

L. தொழில் நுட்பங்கள்

1) பயிர் சாகுபடி, பாதுகாப்பு மற்றும் பயிர் பெருக்கம்
http://www.agritech.tnau.ac.in/ta/Agriculture/agri_index_ta.html

http://www.agritech.tnau.ac.in/ta/crop_protection/crop_prot_ta.html

2) விதை கொள்முதல் செய்ய இருப்பு நிலை விவரம்
http://www.tnagrisnet.tn.gov.in/website/availabilityReports.php?type=Seed

3) உயிரிய தொழில்நுட்பம்
http://www.agritech.tnau.ac.in/ta/bio_tech/biotech_ta.html

4) அறுவடை பின்சார் தொழில் நுட்பம்
http://www.agritech.tnau.ac.in/ta/post_harvest/post_harvest_ta.html

5) உயிரி எரிபொருள்
http://www.agritech.tnau.ac.in/ta/bio_fuels/bio_fuels_ta.html

M. வேளாண் செய்திகள்

1) பாரம்பரிய வேளாண்மை
http://www.agritech.tnau.ac.in/ta/itk/indi_farm_ta.html

http://www.agritech.tnau.ac.in/ta/crop_protection/crop_prot_ta.html

2) வளம்குன்றா வேளாண்மை
http://www.agritech.tnau.ac.in/ta/sustainable_agri/susagri_ta.html

3) பண்ணை சார் தொழில்கள்
http://www.agritech.tnau.ac.in/ta/farm_enterprises/farm_enter_ta.html

4) ஊட்டச்சத்து
http://www.agritech.tnau.ac.in/ta/nutrition/nutrition_ta.html

5) உழவர்களின் கண்டுபிடிப்பு
http://www.agritech.tnau.ac.in/ta/farm_innovations/farm_innovations.html

N. திட்டம் மற்றும் சேவைகள்

1) ஊரக வளர்ச்சி மற்றும் ஊராட்சி துறையின் திட்டங்கள் & சேவைகள்
http://www.tnrd.gov.in/schemes_states.html

2) வேளாண் மற்றும் ஊரக வளர்ச்சிக்கான திட்டங்கள் & சேவைகள்
http://www.agritech.tnau.ac.in/ta/govt_schemes_services/govt_serv_schemes_ta.html

3) வட்டார வளர்ச்சி
http://www.agritech.tnau.ac.in/ta/dev_blocks/indextnmap_ta.html

4) வங்கி சேவை & கடனுதவி
http://www.agritech.tnau.ac.in/ta/banking/credit_bank_ta.htm

5) பயிர் காப்பீடு
http://www.agritech.tnau.ac.in/ta/crop_insurance/crop_ins_ta.html

6) Krishi Vigyan Kendra (KVK) | Agricultural Technology Management Agency (ATMA)
http://www.agritech.tnau.ac.in/ta/kvk/kvk_ta.html

http://www.agritech.tnau.ac.in/ta/atma/atma_ta.html

7) NGOs & SHGs
http://www.agritech.tnau.ac.in/ta/ngo_shg/ngo_shg_ta.html
அக்ரி கிளினிக்
http://www.agriclinics.net/

9) கிசான் அழைப்பு மையம்
http://www.agritech.tnau.ac.in/ta/kisan/kisan_ta.html

10) பல்லாண்டு மேம்பாட்டு குறிக்கோள்
http://www.agritech.tnau.ac.in/ta/mdg/mdg_ta.html

11) கேள்வி பதில்
http://www.agritech.tnau.ac.in/ta/faq_ta.html

12) பல்கலைக்கழக வெளியீடுகள்
http://www.agritech.tnau.ac.in/ta/tnau_publications/tnau_publish_ta.html

O. ஈ – வேளாண்மை செய்தி மற்றும் சேவைகள்

1) தோட்டக்கலை
http://www.agritech.tnau.ac.in/ta/horticulture/horti_index_ta.html

2) வேளாண் பொறியியல்
http://www.agritech.tnau.ac.in/ta/agrl_engg/agriengg_index_ta.html

3) விதை சான்றிதழ்
http://www.agritech.tnau.ac.in/ta/seed_certification/seedcertification_index_ta.html

4) அங்கக சான்றிதழ்
http://www.agritech.tnau.ac.in/ta/org_farm/orgfarm_index_ta.html

5) பட்டுபுழு வளர்பு
http://www.agritech.tnau.ac.in/ta/sericulture/seri_index_ta.html

6) வனவியல்
http://www.agritech.tnau.ac.in/ta/forestry/forestry_tamil_index.html

7) மீன்வளம் மற்றும் கால்நடை
http://www.agritech.tnau.ac.in/ta/fisheries/fish_index_ta.html
தினசரி வானிலை, மழைப்பொழிவு மற்றும் நீர்த்தேக்க நிலைகள்
http://services.indg.in/weather-forecast/

9) விதை மற்றும் உரம் தயாரிப்பாளர் விபரம்
http://www.tnsamb.gov.in/seedcomp.html

http://www.tnsamb.gov.in/fertilizers.html

10) உரங்களின் விலை விபரம்
http://www.tnagrisnet.tn.gov.in/website/FertilizerPrice.php

P. போக்குவரத்து துறை

1) ஓட்டுனர் பழகுனர் உரிமம் மனு முன்பதிவு
http://www.tn.gov.in/appforms/form2.pdf

2) புகார்/கோரிக்கைப் பதிவு
http://transport.tn.nic.in/transport/registerGrievanceLoad.do

3) வாகன வரி விகிதங்கள்
http://www.tn.gov.in/sta/taxtables.html

4) புகார்/கோரிக்கை நிலவரம்
http://transport.tn.nic.in/transport/grievance_statusLoad.do

5) ஓட்டுனர் உரிமம் சேவை முன்பதிவு
http://tnsta.gov.in/transport/transportTamMain.do

6) தொடக்க வாகன பதிவு எண்
http://transport.tn.nic.in/transport/rtoStartNoListAct.do