Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Bertramp

    Newbie Question

    Hi, I'm a newbie trying to get a hang of PHP and web services - i am receiving a response like so: <soapenv:Envelope> <soapenv:Header/> ? <soapenv:Body> ? <ns:getProductResponse> ? <return> <product id="10663806"><mfg-pn>E96BP-2</mfg-pn><catalog-key v="spr"/><cat id="4962"/><mfg...
  2. Bertramp

    XML of request

    I am using PHP5 and SOAP to request a certain webservice - is there any way i can see the xml being generated Bert
  3. Bertramp

    Updating a database

    What is the best practice for updating the production database e of the website - I mean for instance if the website database needs to be truncated completely and fresh records inserted regularly - how is this achieved without affecting the uptime Bert
  4. Bertramp

    Optimize this function

    Is there anyway to optimize this function: CREATE function strip(@para varchar(110)) returns varchar(110) as begin declare @i varchar(110) if charindex('/',@para) > 0 set @i = left(@para,charindex('/',@para)-1) else...
  5. Bertramp

    Self Join Question

    Yes - i do understand that - but my confusion is - how many instances do i add to get all node information in a field for a current record - e.g. the current record shows a product called computer the field describing it should be business:IT:Systems:Desktop | Computer the first field would...
  6. Bertramp

    Self Join Question

    Hi People, I have a table containing category and another one containing products - each product is has a reference to a category - each category has a field defining a parent id - now this is what i want to do I would like to have each of the products listed with a field displaying the...
  7. Bertramp

    Carriage Return

    Thanks Hvass - that indeed was the problem - It has been resolved Regards Bert
  8. Bertramp

    Carriage Return

    thanks for the response hvass - I understand what you're saying but this is only happening on 4 tables on sepecific columns out of 27 tables Bert
  9. Bertramp

    Carriage Return

    Are there any known issues with Mysql on windows?? Bert
  10. Bertramp

    Carriage Return

    it's an import utility built in-house - it's a java based application and works just fine on Linux - It works just fine with Sql Server and mysql on Linux - Seems like something with the Windows / Mysql combination Bert
  11. Bertramp

    Carriage Return

    HI, I am runnin a utility to parse and import XLM files into a Mysql database on Windows however, the problem i am facing is that in some of the tables i have notice that on certain fields there is a training carriage return character. The same utility run on Linux + Mysql doesn't have that...

Part and Inventory Search

Back
Top