Viewing 7 posts - 16 through 22 (of 22 total)
I don't create geolevel frequently, there are 10 different levels with data associated with them, so whenever client application try to download data for 5-6 levels say, then all of...
January 13, 2008 at 8:36 pm
Hi,
I finally changed my code (procedure) and came to this end.
if not exists(select [name] from workspace.sys.tables where [name] = 'geoleveltbl')
begin
create...
January 13, 2008 at 3:10 pm
I am not using any explicit transaction. Bound to defaul Read Committed Isolation Level.
Thanks,
Sri.
December 27, 2007 at 12:32 pm
Hi,
I used UPDLOCK and it helped to get rid of deadlock, can anybody tell me if it is a good way to use UPDLOCK (since it works...
December 27, 2007 at 9:13 am
Thanks Grant Fritchey, its helpful.
Not all times I get primary key voilation or deadlock, but I am sure that I get any of these errors when I ran 10...
December 11, 2007 at 10:11 am
I am sorry for giving you very little information.
Actual process: I check for @geolevel (doesn't exist), call another procedure (proc1 which takes couple of parameters along with @geolevel) and create's...
December 11, 2007 at 7:53 am
if not exists(
select geolevel from table_geography
where geolevel = @geolevel)
begin
insert into table_geography values(@geolevel)
end
Thanks,
Sri
December 10, 2007 at 4:10 pm
Viewing 7 posts - 16 through 22 (of 22 total)