Viewing 15 posts - 451 through 465 (of 1,346 total)
update mytable
set myfield = 'A' + myfield
August 16, 2006 at 1:02 pm
SUre it can be tuned. A couple things.
The left join on DailyFeed20060801 ToInsertTable can be a problem. Figure out a way to write this so you don't need a left...
August 3, 2006 at 8:48 am
Not sure what you mean,
Can you please post more information.
July 17, 2006 at 10:06 am
You cannot pass an array into a procedure.
Here's an article you can read:
You can also try to pass in XML
July 13, 2006 at 10:57 am
I would suggest using xml input string instead of what you have listed, It seems your trying to do too much, and also trying to do something that sql does not...
July 13, 2006 at 8:35 am
Tell your application to stop doing that.
the stored procedure looks fine.
July 12, 2006 at 2:34 pm
Look up triggers in books online.
Triggers only fire on Insert,Update,Delete.
they have to fire methods,
Instead of (insert,Update,Delete)
and
After (insert,Update,Delete)
I'm sure you can accomplish what you want in the after update trigger,
You...
July 12, 2006 at 2:30 pm
your assumption that it will only scan the first table is incorrect.
a union statement runs the query against both tables regardless of what it finds.
union eliminates duplicates,
Union All shows...
July 12, 2006 at 2:27 pm
Unless the select is issued by a certain user, or from a certain stored procedure, or a certain application, or a certain machine, I don't think you'll be able to...
July 3, 2006 at 10:22 am
ssis
sql server integration services
June 29, 2006 at 10:01 am
You should not be having performance issues.
If you have a partitioned view you have to make sure you have constraints on the table.
So for the Date column in each of...
June 29, 2006 at 9:59 am
Does the schema match on all the subscribers?
It appears that one of the destination tables does not match the source table. Specifically the char, or varchar size of a column is...
June 28, 2006 at 9:05 am
on insert, or issue a separate update statement,
use rtrim()
it will remove trailing spaces from the value
update mytable
set mycol = rtrim(mycol)
June 27, 2006 at 8:33 am
I do believe the seek starts from the Non Leaf, or Root pages, reading the headers, and a scan looks throu the Leaf pages. hence why it takes so much...
June 27, 2006 at 8:12 am
Viewing 15 posts - 451 through 465 (of 1,346 total)