Viewing 15 posts - 31 through 45 (of 594 total)
quote:
What about using a thin client for most of the work and utilising Fat clients for any information/calc heavy work ?...
September 18, 2003 at 6:32 am
Well, it was just a thought...what about the original suggestion of splitting to yearly tables?
September 4, 2003 at 12:53 pm
It actually sounds like you are working on a datawarehouse solution. Have you used Analysis Services for this kind of stuff?
September 4, 2003 at 11:22 am
Frank,
nice link. neat technique. Actually, this goes to the last point I was making...the technique shown will only be easily accomplished if the tables have a fixed number...
September 4, 2003 at 9:44 am
Actually, it's quite simple, and doesn't have much to do with whether there is a clustered index on the table or not, except if the clustering key is actually needed...
September 4, 2003 at 9:35 am
The reason I recommend using one table for each year, BTW, is that you ensure a fixed number of columns in the table, which means that in some of the...
September 4, 2003 at 8:26 am
Very interesting situation, and congrats for getting this far! A couple questions: I am assuming that you are not reloading the same data month after month, just because you...
September 4, 2003 at 8:23 am
We use Progress9 with OpenLink 4.0 drivers. OpenLink provides ability to set up ODBC DSN to the UNIX box and act as if it were any old data store...licensing...
September 4, 2003 at 8:06 am
SET SHOWPLAN_TEXT ON
GO
SET NOEXEC ON
GO
SELECT 2.Early FROM Morning 2
ORDER BY BrainPower DESC
GO
September 4, 2003 at 6:55 am
quote:
Point blank a nonclustered index will always read more pages as oppossed to a clustered if there is a clustered index on...
September 4, 2003 at 6:49 am
quote:
..how did you manage to get the execution plan into this kind of ascii art ???..
September 4, 2003 at 6:43 am
Use one of the built-in templates traces with Profiler. If your application is built using mostly stored procedures, use the "SQLProfilerTSQL_SPs" template. Click on the Data Columns and...
September 3, 2003 at 12:28 pm
quote:
...and I know, in my heart, that there is some way to retrieve the return value from a stored procedure using the...
September 3, 2003 at 10:51 am
OK, not to sound pessimistic, but this kind of thing is generally better left to the filesystem. That is specifically what it is designed for. But, that said,...
September 3, 2003 at 8:40 am
OK,
I have to admit, I wasn't entirely convinced it was the SMP environment that was throwing things for a loop in my query testing, so I decided...
September 3, 2003 at 8:20 am
Viewing 15 posts - 31 through 45 (of 594 total)