Viewing 15 posts - 32,356 through 32,370 (of 39,748 total)
Move your stored procedure to a function
Or write a query to do the calculation and join to the view.
March 29, 2007 at 10:46 am
Grant's explanation makes sense. It looks like you're using a temp table as well, so that will get created in tempdb along with any other intermediate tables that SQL Server...
March 29, 2007 at 10:46 am
Implicit conversions can get you in many places. The big thing to be aware of is that you'd probably want to compare > 0.0 so that the conversion doesn't take...
March 29, 2007 at 10:44 am
Maybe you can give an example with data? Not really sure what you're looking for.
March 29, 2007 at 10:42 am
Both Kofi's and David's suggestions should perform well if you have the tables indexes for those columns. The query optimizer can take some shortcuts and get you quick results.
March 29, 2007 at 8:40 am
Can you post some code?
The ideas above are what I thought of. Data should be consistent and usually corruption results in pages being skipped missing data.
March 29, 2007 at 8:37 am
Those are definitely good ideas and that's a great book, but in a lot of cases I've worked on projects that couldn't be phased. Usually if that's the case, you...
March 29, 2007 at 8:35 am
For a windows alert, you can go into the services applet in control panel. Pick the SQL Server Agent service and get properties. Go to the recoveyr tab. There you...
March 28, 2007 at 8:37 am
Ed brings up a great point. Also be sure that you aren't abandoning open transactions with connecitons being held open.
I'm not sure if the .NET state changes anything on the...
March 28, 2007 at 8:30 am
It seems the second inner join isn't needed. Collapse this
/*Add the Company name for the lot numbers used in the JO*/
Select qalotc.fclot, qalotc.fcpartno, ct.fccompany
from qalotc
Join
(
...
March 28, 2007 at 8:26 am
Or if you don't need the data for other purposes, use Peter's idea, but update, then delete from temp where matching the table, then insert everything else.
March 28, 2007 at 8:21 am
I can positively, most definitely state that I am almost 100% confident that we are mostly talking about databases.
I think.
March 28, 2007 at 8:13 am
I doubt Access grows. More likely people will shift to VB.NET instead. VFP was a full featured development environment, with lots of OOP built into the product. You could develop...
March 28, 2007 at 8:11 am
Viewing 15 posts - 32,356 through 32,370 (of 39,748 total)