Viewing 15 posts - 46 through 60 (of 74 total)
-- create a stored procedure which:
-- reads & normalizes your data
-- by (create table date, name, value)
-- then...
Coach James
April 27, 2004 at 4:15 pm
-- be sure a DateTime field name is in your table
-- be sure the DateTime field name is indexed
-- Begin complex SQL...
Coach James
April 26, 2004 at 5:18 pm
SET
QUOTED_IDENTIFIER OFF
GO
SET ANSI_NULLS ON
GO
CREATE...
Coach James
April 26, 2004 at 4:55 pm
UPDATE
@tblvarClose
SET Close0PctCnt = COUNT(Quote.quote_num),
Close0PctGP Coach James
Regards,
April 23, 2004 at 6:56 pm
UPDATE
@tblvarClose
SET Close0PctCnt = qCnt,
Close0PctGP...
Coach James
April 23, 2004 at 6:16 pm
Please correct me if I'm wrong, but your XML is data specific...
Can you reduce the total record count on XML document, thus reducing your memory requirements? Making XML pages instead...
Coach James
April 20, 2004 at 2:56 pm
Darian:
The comments you received, did not come from novice DBA's!
Unless you are considering hiring a DBA, I would suggest hiring a consultant!
Coach James
April 19, 2004 at 5:04 pm
Yes, that would be preferred...
By the way, doesn't access create a type_table for you by using this process? Use access in design mode to see this, plus new code created...
Coach James
April 16, 2004 at 1:32 pm
Those who know little speak it the loudest!
If I felt someone was ready for combining all their type fields into one table, I would have suggested it.
Coach James
April 16, 2004 at 1:00 pm
Great! You can do this:
Create a deployment.asp page for your developer, where he maintains his dsn on test for creating and maintaining your reports, then runs the deployment.asp from your...
Coach James
April 16, 2004 at 12:39 pm
Normalize your data, maintain good indexes, and your limitations are going to be within your hardware, backups, number of cpu's, and your available memory.
Beyond those problems, compare Oracle, MySQL, Informix, MSSQL & what see...
Coach James
April 16, 2004 at 12:27 am
This is perfect example for normalizing data...
You say you have data described "hard coded in your application as a drop-down list"?
Please create a "type" table for your column (example):
CREATE
...
Coach James
April 16, 2004 at 12:03 am
Without knowing the answers to the last post yet, I can still tell your going to need a front end form which will ask the developer for the database required...
Coach James
April 15, 2004 at 11:37 pm
Is this text formated for parsing out fields?
If so, use convert or cast for each field type.
ISDATE and other functions can be found at microsoft.com (developers SQL manual)
Coach James
April 13, 2004 at 4:54 pm
for_himanshu – We are not using any javascript, it’s pure html, please see previous post.
But you are using objects to access your database...
Please...
Coach James
April 13, 2004 at 4:48 pm
Viewing 15 posts - 46 through 60 (of 74 total)