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 dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Preetham16

  1. Preetham16

    Convert.bat

    Hello all I found the solution the correct syntax to convert the files in Batch is following ren M:\files\*.htm *.html Thank you people... Regards Pr
  2. Preetham16

    Convert.bat

    Sorry but it doesnt work ... Yes the files under the M drive and under the folder Files ... Should I try any other way ...??
  3. Preetham16

    Convert.bat

    I want to convert an Htm file to Html. I want to view the html file in Mobile device and I have 30 htm files which have to be converted to html every day. The Mobile device is not accepting the *.htm but accepting *.html. I tried using the following codes but none of them helped .... Ren...
  4. Preetham16

    Union Query Result Sum

    Hello Gurus, Following Code is part of UNION QUERY ... after the UNION i would like to have the SUM of Value of the Columns ABSMG (quantity) VVBUM (Gross Sales) VVNUM (Net Sales) I am getting an error when I directly use a SUM FUNCTION at the following line of CODE as shown below...
  5. Preetham16

    Creating Totals for Union Query?

    I am trying to do the same thing .. but could not succeed so far could you please tell me the step how I can do that ..?
  6. Preetham16

    Creating Totals for Union Query?

    Hi gurus, How do I create totals for specific columns in a Union Query? Some code would be of Great appreciated
  7. Preetham16

    Nested Query in ACCESS

    Hi gurus I have an Existing Query which joins couple of table and generates a Table VIEW. I need to write another query which should generate the SUMMARY 2 colums of that table (Quantities and Revenue)of that in the next row of the TABLE... Any inputs are highly appreciated. Cheers Pr
  8. Preetham16

    Where is the MISTAKE in my CODE?

    I still have the problem in my Select it says it cannot convert the VARCHAR to NUMERIC where as when I try directly on the SQL Server it works... PR
  9. Preetham16

    Where is the MISTAKE in my CODE?

    convert(numeric(10),a.partner(isnull(a.partner,'empty'))) as 'Partnernr', First of all the part (isnull(a.partner,'empty')) is checking if a.partner has any null values then isnull function is filling it with text called empty ... Then the Convert function is converting the Text to Numeric...
  10. Preetham16

    Where is the MISTAKE in my CODE?

    Hi Guru's SELECT convert(numeric(10),a.partner(isnull(a.partner,'0'))) as Partnernr from smokna1 as a I am getting the following Error message - Invalid Object name a.partner PR
  11. Preetham16

    Converting Datatype

    Hi thanks for the replies I dont need DECEMALS...when I use INT its saying ILLEGAL EXPRESSION. PR
  12. Preetham16

    Converting Datatype

    I would like to convert Varchar to Numeric and the following code am using in SQL but still am getting problems... cast(Cast(a.partner as char)as numeric(10)) as Partnernr regards.. PR
  13. Preetham16

    ERROR CODE 3001 :- Invalid Argument

    I have an interface in which I write SQL (Select statements) and generates an access table... The data is being filled properly in the table but after writing around 550 records then I get an Alert ": ERROR CODE 3001 INVALID ARGUMENT. " By going on clicking the alert box the DATA is getting...
  14. Preetham16

    Identifying Report Foot

    Dear Gurus I have a subreport which retrieves the Summary of the main report. The heading of the MAINREPORT is repeated in the SUMMARY section if the Summary is more than 1 page I see the heading of the MAINREPORT how do I omit the HEADING in the SUMMARY REPORT. Thanq BVK

Part and Inventory Search

Back
Top