T-SQL is nice. But I need a more flexible scripting language in Sql Server like javascript.
Can anyone help?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can try looking at CLR in SQL Server.
You can use any .NET language and import assemblies to SQL server, using the public functions in those assemblies.
You may even have success with this using javascript that compiles to CLR (see this SO question on that subject).