Viewing 9 posts - 31 through 39 (of 39 total)
Why don’t you use SQL Server profiler to identify the deadlock first? Then analyze the deadlock graph and you can see what the causes are. For more details refer below...
February 19, 2008 at 6:25 am
In SQL Server there is no common place to put your common functions. Put whatever objects in the same database that is using those objects.
If you put any object...
February 19, 2008 at 4:26 am
In SQL Server 2005, you have a tool called, “SQL Server Configuration Manager”. You go there and click on SQL Server 2005 Services in left pane. Then it will display...
February 19, 2008 at 4:02 am
This is how you do it SSMS. (SQL Server Management Studio)
1.Expand the security folder of the respecting server
2.Right click on the user and get properties
3.Select Server Roles from the left...
February 15, 2008 at 1:18 am
You can use below query to get what you want. Remember you need to declare 6 date variables for this query.
Two date variables to filter weekly data
Two date varibales to...
February 12, 2008 at 8:32 am
A view is a virtusal table in SQL Server. A views are updateble. But there are several conditions applied.
1. View must be derived from one base table.
2. Coulmns of...
February 6, 2008 at 12:45 am
Can you explain a bit, how you are getting Actual fugures? I mean WeekActual, MonthActual, YearActual
February 5, 2008 at 4:59 am
You can use the following query to update status field with 'matched'.
Table tab1 contains the sample data you have given.
update dbo.tab1 set [status]='matched'
from
(select cardno,sum(debitamt) as dra,sum(creditamt) cra,...
February 1, 2008 at 3:49 am
Viewing 9 posts - 31 through 39 (of 39 total)