This blog is created for IT Developers who can share their problems and get the solutions.
Owner: sandeepmittal11
Listed in: Computers
Language: English
Tags: ASP.Net, Sql Server, Oracle
Site Statistics
Unique Visitors Today:
0
Page Views Today:
0
Unique Visitors this Week:
0
Page Views this Week:
0
Unique Visitors this Month:
0
Page Views this Month:
0
Total Unique Visitors:
45,012
Total Page Views:
73,028
Total Hits Out:
90
Latest Blog Posts for IT Developers Zone
- Mutex MultithreadingIn this post we will learn how to implement mutex multithreading. Let's take a case study to understand how and where to implement mutex and multi-threading at the same time.ScenarioSchedule an application which would run very fre...
- Except and Intersect in sqlon Nov 9, 2013EXCEPT and INTERSECT operator works on two resultsets.Basic rules for combining two resultsetsNo. of columns in both resultset should be equalThe order of columns should be sameCorresponding data type of each column in each select should be...
- row_number in sqlon Oct 14, 2013 in SQL Server 2005Row_Number feature was introduced in SQL Server 2005.Row_Number generates a run-time column in the result set which generates sequential number to each row according to the column used in order by clause.SyntaxRow_Number() over (order...
- Create End Point in SQL Serveron Oct 7, 2013 in Sql ServerIn earlier article, we learn about EndPoint in SQL ServerIn this article, we would learn how to create an Endpoint in SQL ServerBefore creating an endpoint, we need to reserve an HTTP Namespace to expose the endpoint.EXEC sp_reserve_http_namespace N'...
- End Points in Sql Serveron Oct 7, 2013 in Sql ServerA SQL Server endpoint is the point of entry into SQL Server, or a way to connect to SQL Server instance.Endpoints in SQL Server are similar to Web Services that expose database access over HTTP.There are 5 system endpoints that are automatically crea...
- How to start or stop an endpoint in SQL Serveron Oct 7, 2013 in Sql ServerIn this post, we would see how to start or stop a SQL End PointLet's first query sys.endpoints catalog view and see all the end points exists select * from sys.endpointsOUTPUTTo stop an endpoint:ALTER ENDPOINT endpoint_name STATE = STOPPEDT...
- SQL Server : Msg 6004, Level 16, State 12, Line 1 User does not have permission to perform this action.on Oct 7, 2013 in Sql ServerYou might get the following error while creating an end point in SQL ServerThis error is generated when a user is trying to create an endpoint but do not has the access.Resolution: Contact Server Administrator and ask him/her to grant the "Create End...
- Nested Transaction in Sql Serveron Jul 24, 2013In previous article, we learnt about transaction.In this article we will see how nested transaction worksIn nested transaction, the variable @@TRANCOUNT can be used to check the count of level of nested transactions. The variable ...
- Transaction in Sql Serveron Jul 23, 2013 in Sql ServerIn this article, I am sharing the concept of transaction in sql server and how it is implemented.Transactions run as a group of commands or queries as single execution unit. It ensures either all the commands or queries will be executed or none of th...
- jQuery Basic Interview Questions and Answerson Jul 21, 2013 in JQuery Interview QuestionsQuestion : What is jQuery?Answer : jQuery is a light weight JavaScript library which provides fast and easy way of HTML DOM traversing and manipulation, event handling, and client side animations, etc. One of the greatest features of...
Loading Comments...
Comments
{ds_PageTotalItemCount} commentcomments
{pvComments::date}
{pvComments::comment}