Showing posts with label Sql. Show all posts
Showing posts with label Sql. Show all posts

Wednesday, June 07, 2017

Security Framework

I've created a new repository on GitHub.
The project is a security framework for asp.net mvc projects.
You can find it th following address on GitHub:

https://github.com/Searching/securityframework

I'll update this post periodically to make a useful guide to use it in your projects.

Have fun. 

Tuesday, April 20, 2010

Rows to single column in Sql

Sample table as Cities in rows is convert to single column

declare @retstr varchar(8000)  
 select Top 5 @retstr =  COALESCE(@retstr + ';','') + City   
from State  
print @retstr  

Update the author and email address of every commit on a repository

source: stackoverflow.com