Viewing 11 posts - 1 through 11 (of 11 total)
You said it will increase the performance if it is two different partition. What makes you tell that like is there any specific process that happens each time you do...
June 6, 2008 at 7:18 pm
I planning to give a try with join Query.
February 28, 2008 at 12:51 pm
Thanks for your reply, So Count will lead to performance issue. Right?
if yes Then the modification made my senior is not the solution.
February 28, 2008 at 7:17 am
Create procedure prcA
(
......
)
as
Begin
.......
.......
Alter table a
disable trigger atrigger
update a
set column1 = '200-525'
where .....
Alter table a
enable trigger atrigger
end
Question
1) will this really disable the trigger and enable it because I was...
January 25, 2008 at 12:48 pm
I understand your point but my seniors wants it to be as sp's.
Their point is that function used recompile each everytime it is executed.So if SQL2000 doesn't support explicit table...
November 13, 2007 at 1:16 am
my aim is to avoid passing too many output paramerters since I have around 250 columns.
Scenarios is like this I will have a main procedure like Proc1 inside that I...
November 13, 2007 at 12:39 am
Thanks ,
1) Without using dynamic SQL is it possible like passing it has sysvariable.
2) Is it possible to return a table output parameter from a procedure in SQL2005 or in...
November 13, 2007 at 12:30 am
Thanks Buddy,
Added to your point, Please go through the below give Microsoft Article.
FIX: Error messages when you run a query that references a view in SQL Server 2005 Service Pack...
August 31, 2007 at 1:01 pm
Thanks Ken. Got the difference. Thanks again.
Can you explain what is "Adding any outer bits of the JOINs."
June 26, 2007 at 4:31 am
Excellent Article. Can u please tell about Image handling using BCP.It is really time consuming action to save the image in the db.
February 23, 2007 at 8:30 pm
Viewing 11 posts - 1 through 11 (of 11 total)