Posts

Showing posts from February, 2012

Will Salesforce work with cookies disabled?

Please check this out. http://www.salesforce.com/company/privacy/full_privacy.jsp#nav_info From my end, I am not able to login without cookies. 

Doing a case sensitive search in a case insensitive SQL server

SELECT   *   FROM  dbo . CaseSensitiveTest WHERE  Value1  LIKE   '%Test%'   Collate  SQL_Latin1_General_CP1_CS_AS GO http://www.mssqltips.com/sqlservertip/1032/case-sensitive-search-on-a-case-insensitive-sql-server/