Forum Replies Created

Viewing 15 posts - 46 through 60 (of 74 total)

  • RE: Report

    -- create a stored procedure which:

    -- reads & normalizes your data

    -- by (create table date, name, value)

    -- then...


    Regards,

    Coach James

  • RE: extracting info

    -- be sure a DateTime field name is in your table

    -- be sure the DateTime field name is indexed

    -- Begin complex SQL...


    Regards,

    Coach James

  • RE: variable must not be combined with data-retrieval operations.

    Get both your query output and return success with @@error as a parameter output:

    SET

    QUOTED_IDENTIFIER OFF

    GO

    SET ANSI_NULLS ON

    GO

    CREATE...


    Regards,

    Coach James

  • RE: Update Statement

    Your Solution:

    UPDATE

    @tblvarClose

      SET Close0PctCnt = COUNT(Quote.quote_num),

        Close0PctGP


    Regards,

    Coach James

  • RE: Update Statement

    Could be like this:

    UPDATE

    @tblvarClose

    SET Close0PctCnt = qCnt,

    Close0PctGP...


    Regards,

    Coach James

  • RE: bulk insert not inserting everything...

    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...


    Regards,

    Coach James

  • RE: Design

    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!


    Regards,

    Coach James

  • RE: defining a dropdown list for a table field

    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...


    Regards,

    Coach James

  • RE: defining a dropdown list for a table field

    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.


    Regards,

    Coach James

  • RE: Can a report have a dynamic DSN?

    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...


    Regards,

    Coach James

  • RE: Design

    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...


    Regards,

    Coach James

  • RE: defining a dropdown list for a table field

    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

    ...


    Regards,

    Coach James

  • RE: Can a report have a dynamic DSN?

    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...


    Regards,

    Coach James

  • RE: Alter Column Question

    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)


    Regards,

    Coach James

  • RE: Duplicate Records Being Inserted

    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...


    Regards,

    Coach James

Viewing 15 posts - 46 through 60 (of 74 total)