Viewing 15 posts - 1 through 15 (of 17 total)
Actullay the answer shoul be
this is an exception
id
-----------
1
2
4
5
January 19, 2010 at 11:11 pm
I think raj is correct, for 2005 = 250 and 2008 = 1000
Please check this URL for 2005
http://msdn.microsoft.com/en-us/library/ms188783(SQL.90).aspx
January 18, 2010 at 11:09 pm
Returns the date of the most recent update for statistics on a table or indexed view.
so it may be a table or indexed view
January 7, 2010 at 4:47 am
Atlast we found that this is known bug from sql server 2005 sp1 :w00t:
https://connect.microsoft.com/SQLServer/feedback/ViewFeedback.aspx?FeedbackID=365876
December 28, 2009 at 12:21 am
Hi Suresh,
Even create type also throwing same deadlock error
We have some set of deployment scripts if a script contains user defined data type, that UDD is used in some create...
December 27, 2009 at 9:52 pm
Thanks Abhijit More for your effort
I tried in a different ways
begin tran
exec sp_addtype 'Udd_dummy','int'
go
create table dummy_tbl
(name Udd_dummy)
go
rollback
begin tran
exec sp_addtype 'Udd_dummy','int'
go
create proc dummy_sp
as
begin
Declare @Dummy Udd_dummy
select @dummy
end
go
rollback
both are working fine in...
December 24, 2009 at 4:44 am
I am getting this problem only in Sql server 2008(SP1) server, when I try the same script in Sql server 2005 it was working fine
Here is the Deadlock graph
<deadlock-list>
<deadlock victim="process17b390">
<process-list>
<process...
December 24, 2009 at 1:54 am
webrunner (11/4/2009)
We have a SQL 2005 64-bit (SP2) SQL Server where the Minimum server memory (in MB) is set to 10240 MB.
But in Task Manager, when I just checked, the...
November 4, 2009 at 10:05 pm
Instaead of using replace function why don't you use where clause
like
Update #temp
set fullname = 'bill'
where fullname = 'billy'
I think if you use this way you can avoid calling replace...
October 28, 2009 at 2:56 am
I hope you have Window server 2003 Enterprise Edition
/PAE enabled in boot.ini?
Have you Enabled the Lock Pages in Memory Option (Windows)?
Please check the below URL for more details about Enabling...
October 27, 2009 at 12:23 am
What is you Operating system Edition?
Is your system is 32 Bit or 64 Bit?
October 26, 2009 at 11:06 pm
Use DBCC USEROPTIONS to know the database isolation level
October 26, 2009 at 5:22 am
Hi Melton,
If OS version(standard edition) doesn't support more than 4GB even if you enable /PAE switch, how the sql server will(AWE) addersss the windows extention on 32 bit server?
Please help...
October 14, 2009 at 6:14 am
what you have done is well and good, while setting up max memery we should not consider the virual memroy.
October 8, 2009 at 10:13 pm
Viewing 15 posts - 1 through 15 (of 17 total)