Tagged Questions

2
votes
4answers
61 views

How to ask the browser do not wait for the response from server?

I have a asp.net page that with a button which is for user to run a calculation by calling a stored proc in SQL Server 2005. The calculation may take up to an hour or more. When user click on the …
0
votes
1answer
24 views

How to split data in sql server 2005?

Let's say....there is a column with data, "A, B, C" in SQL Server 2005. How can i split the data in that column into something like.. Column A A B C
0
votes
4answers
54 views

How to store Vietnamese characters in SQL Server 2005?

I wanted to add my colleague's information in my database for testing purposes. Since he his from Vietnam, his name has a special Vietnamese character in it ('ơ'). When I updated the database, the …
2
votes
6answers
254 views

@@ERROR and/or TRY - CATCH

Will Try-Catch capture all errors that @@ERROR can? In the following code fragment, is it worthwhile to check for @@ERROR? Will RETURN 1111 ever occur? SET XACT_ABORT ON BEGIN TRANSACTION BEGIN …