Forum Replies Created

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

  • RE: XML generated by query

    You might have better luck using SAVEASXML in the recordset object of ADO (2.6 and higher)

    I have found it is possible to please all of the people all of the...

  • RE: How to access XML file using SQL ??

    Presuming you're using SQLServer 2000 then check out the FOR XML and OPENXML keywords.

    If you're on anything less, like say 7. then you can use ADO XML recordsets (ADO 2.6...

  • RE: Clustered Constraint?

    In my opinion it is best to get into the habit of enforcing Unique Constraints for primary keys. They do perform better and you protect you table against less thorough...

  • RE: Attention, Looking for DTS input using the FSO Obj

    Not quite sure what you're trying to acheive with the 'Package Rollback'. How can the Source file be either in the Source or Destination directories, surely Source contains Source File,...

  • RE: Db Design question

    If your select is slow the first place to look is your indexing strategy on the two tables. Looks to me that you will have a primary key of Contractor...

  • RE: Getting results in the same order as query

    Hi Andy, yup I agree however I thinks June's problem is a little complexe. Her example is

    'Hotel name','Arrive date','Length of stay'

    And the corresponding translation might be Nom D'Hotel, Jour...

  • RE: Getting results in the same order as query

    I guess you're not returning the values in correct grammatical order for the language. Steve is right, all you need to do is create a column (probably numeric) giving a...

  • RE: db-design

    OK as I understand it so far you need to run the same procedure but have it affect different tables depending on the module number. I suspect you're right about...

  • RE: Getting results in the same order as query

    Hi June

    Andy's right you need some sort of order by clause or possibly a clusterd index, but I can't see how that would help in the example you've quoted.

    Is it...

  • RE: db-design

    Hi Jan

    Not quite clear as to your design problem.

    Is it that you want a way of identifying database objects that belong to a specific web-service so that your php...

  • RE: Strange variable in Stored Procedure

    a propos of the usage of cursors, suggest you declare the cursor as FAST FORWARD since you are only scrolling forward and reading data, this will be more efficient than...

  • RE: Output a Recset back to asp via DTS OutputAsRecord

    This is an intriguing query. Can you explain a little more as to what you're wanting DTS to do for you. Why, for instance, do you need to DTS to...

  • RE: WHERE Condition only if a column is not NULL

    Didn't explain myself properly

    SELECT * from [tablename]

    LEFT OUTER JOIN [tablename2].......

    WHERE [tablename.fldname_1] = [value]

    AND [tablename.fldname_2] > [tablename2.fldname] (ONLY IF tablename.fldname is not null)

    I have found it is possible to please all...

  • RE: Difference between COUNT(*) and COUNT(1)

    Thanks Dan. that's waht I thought, to be honest I've not noticed any performance gain using count(1) in SQLSERVER. I've seen a gain using the ROWS column from SYSINDEXES, but...

  • RE: Working with Text in a Trigger

    I'm not that clear as to what you're trying to do. Are you talking about Text as nText etc or a varchar.

    Just a thought, You might find it more certain...

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