Viewing 15 posts - 16 through 30 (of 42 total)
will it be any performance issue if i shrink log file?
August 2, 2009 at 5:43 am
Thanks Arun,
Here we are storing record everytime....
May be 2000 requests within 2 or 3 seconds...
May 15, 2009 at 1:01 am
Thank u guys.....:)
May 3, 2009 at 11:45 pm
Hi Lynn..
Will it be extra overhead if I create indexes on temporary tables..??
As that procedure will be frequently used ..... Temporary table will be created and deleted,. Indexes will get...
April 24, 2009 at 10:01 pm
In our procedure we are returning a record set which is made up of multiple queries.
I am fetching rows using seperate queries..
Here is small example......
here I am using one table...
April 23, 2009 at 10:17 pm
Thanks Gail............:-)
Thanks for ur reply..
April 22, 2009 at 3:28 am
Hi Gail,
If I execute the same query in some good server, then will table scans get reduced..?
April 22, 2009 at 2:49 am
Its become bit faster after adding index..
plz find the attached file..
April 22, 2009 at 2:23 am
No. .. its not possible to have multiple null's for a column which is having unique constriant...
create table temp
(
id int unique
)
insert into temp
values (1)
insert into temp
values (null)
insert into temp
values (null)
drop...
April 17, 2009 at 2:00 am
As per the table structure there are only two columns
QuestionID BIGINT (Primary key)
QuestionXML NTEXT
Will it be a problem if the datatype is NTEXT...
And also we wil store XML which...
April 14, 2009 at 9:59 pm
Arun....
Ur logic works only in the case of alphanumeric values... I throws error in case of string
The error is
------
Msg 245, Level 16, State 1, Line 17
Conversion failed when converting...
April 9, 2009 at 3:37 am
Thanks Arun....
Your code works fine.........
I will implement this in my procedure....:-P
April 9, 2009 at 2:23 am
Viewing 15 posts - 16 through 30 (of 42 total)