Viewing 15 posts - 136 through 150 (of 519 total)
That would be the expanded format where the have a indicator for century, thanks to the y2k rollover. Your date you give reference to would tranlate to the 94th day...
April 4, 2003 at 1:10 am
Although this is highly debatable due to the fact that query optimizer handles the re-order in this case (as you can see in the execution plan), I will say that...
April 3, 2003 at 6:50 pm
They are more than just theories. They are correct. The function fires for each and every row affected, and this would make the execution plan displayed practically useless. I know...
April 3, 2003 at 6:33 pm
I've seen this situation in a lot of financial companies who were used to using spreadsheets. In my case, it always resulted in a lot of tedious coding, as there...
April 3, 2003 at 6:22 pm
If you don't mind having a table of dates, you could use a set based solution.
Create a table containing every date for 20 years or so (a good wide range),...
April 3, 2003 at 6:07 pm
Look up sp_articlefilter and sp_articleview in BOL......
April 3, 2003 at 6:02 pm
Best way I know of scripting a proc dynamically with code is to use sp_helptext 'ProcName'
you can loop through your objects to provide the objectname of the proc. Works great.
Only...
April 3, 2003 at 1:02 pm
What you say is exactly true jensk. I gave an abbreviated explanation which could have used much explanation, which you provided. I assumed that the page locks he was seeing...
April 3, 2003 at 12:56 pm
JDE does not use traditional julian date format. What they use is actually a five digit representation of YYDDD which is the two digit year (03) followed by the day...
April 3, 2003 at 12:41 pm
LMAO.... I just posted this in another thread but here you go anyway...
If you perform the replication by use of the system procs and scripting, as I do, there is...
April 3, 2003 at 12:36 pm
If you perform the replication by use of the system procs and scripting, as I do, there is an option called schema_option which determines how the end tables are created....
April 3, 2003 at 12:32 pm
The performance hit is really determined by how large the profile is. I generally limit this particular one to object scans, procs completing, and statements completing, and delimit the database...
April 3, 2003 at 12:27 pm
Previous to version 2000, what he says is absolutley correct. And I have found many instances in 2000 where it doesn't do the optimization that I would have expected, so...
April 2, 2003 at 1:23 pm
Absolutely. This will distribute the actual inserts across the table rather than causing them to all hit the last page, and increase concurrency in your inserts as well.
If your...
April 2, 2003 at 9:56 am
Viewing 15 posts - 136 through 150 (of 519 total)