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 John Tel 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: *

  • Users: Bertramp
  • Content: Threads
  • Order by date
  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

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