நீ என் காதலி

சில பேர் மொக்கயா நம்ம TR(Rajendiran.T) மாரி கவிதை சொல்லிட்டு  நானும் கவிகர்னு சொல்லுறாங்க.ஒரு நல்ல என்  நண்பன்.ஏன்டா அவுங்களே பீல் பண்னதபோ நீ ஏன் பீல் பண்ணுற..நீயும் கவிதை எழுதுன்னு சொன்னான்.இதோ நான் எழுதிய சிந்திய முத்துகள் .


 நான் அழைத்தால் வருகிறாய் கனவில் மட்டுமே.
நிஜத்தில் எப்போது????


தனிமை கூட சுகம் தான்
உன்னை யெண்ணி தனிமையில் இருக்கும் போது மட்டும்



உன்னை பற்றி சொல்ல வாக்கியங்குளுக்க மட்டும் அல்ல வார்தைகளுக்க போராடுகுகிறேன்.

உனக்கு மட்டும் நான் கெட்டவனாக தோனுருகிறேன் தவறு உன் கண்ணிலா அல்லது என் மேலா?


மௌனமே மொழியானது நீ என் அருகில் இருக்ருகையில்..
நான் கலங்குவது மொழியே மௌனமகி விடகூடாது என்பதர்க்ஹாக ...




One day god asked me can you count stars.. I said Yes...
Simply I asked u to god to sit next with me

Read Users' Comments (0)

Case Sensitivity in SQLServer

In SQLServer I faced one problem with Case sensitivity


SQLServer didn't differentiate this

ADMINISTRATIVE ASSISTANT
Administrative Assistant   
  
Some time SQLServer wont recognize this issue.Because of tha collations.When we create database we case define the
Case sensitivity
That too in SSRS.It was quite difficult.To sort out this issue
only way you can set this collate in SQLServer and convert the required field in Binary(in web lot of codes are available)


To know the full details Run the below query in SQLServer


SELECT *

FROM fn_helpcollations()


We can use this funciton to get all available formats for collate

This one basically used for Case sensitivity

this is the default 'CI_AI_KS collate Latin1_General_CI_AI_KS'



Want a Easy one  in SQLServer

select cast('Gowtham' as varbinary)

select cast('gowtham' as varbinary)

select cast('GOWTHAM' as varbinary)

Simple way to differentiate.. Happy Coding.

Read Users' Comments (0)