I'm wanting to shorten some url's and sql guids into some 'short' url format.
Does anyone have any code or links to some code, for url shortening in T-Sql?
|
I'm wanting to shorten some url's and sql guids into some 'short' url format. Does anyone have any code or links to some code, for url shortening in T-Sql? |
|||
|
|
|
I got my answer :) /me tips his hat to google, yet again. Definitions
this means, i want a shortened url. so i insert it into a db to grab a unique identity number. I then convert this int/big int to a base36 string. Links I based my code off. ...
...
HTH. |
|||
|
|
|
Since string manipulation is something T-SQL doesn't do so well, this is something I'd use a CLR stored procedure for. Then you can use any .Net shortening function. |
|||
|
|