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 wOOdy-Soft 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 chintapalli

  1. chintapalli

    Text in multiple lines: Is this a bug in SQL Server 7

    Never mind, that was a carriage return problem. Harish.
  2. chintapalli

    Text in multiple lines: Is this a bug in SQL Server 7

    Hi, One of my SP's parameter's text spans into multiple lines. But the SP adds the text of the first line only and ignores rest of it. The following SP inserts only the text 'Arithmetic' and NOT 'Arithmetic operation resulted in an overflow.' for the first field of the table in the database...
  3. chintapalli

    Missing or out-of-date export DLL

    I uninstalled and then reinstalled Crystal Reports 8.5. It works now. Thanks. Harish.
  4. chintapalli

    Missing or out-of-date export DLL

    I have all those DLLs. In fact, it has been working, as a stand alone VB application and also as a COM from ASP, till yesterday. I don't know what caused this problem all of a sudden. Thanks. Harish.
  5. chintapalli

    Missing or out-of-date export DLL

    Hi, Same problem here too! Found this on the Crystal Reports site. http://support.crystaldecisions.com/library/kbase/articles/c2003059.asp Still no luck. Harish.
  6. chintapalli

    Recursive SQL Query

    Hi, Can we write a recursive SQL query? I have a User table. It has ID (primary key), UserType and ManagerID apart from many other fields. I have 4 user types. 1. Admin 2. EBSM 3. Broker 4. Assistant These user types follow hierarchy i.e. an Assistant belongs to a Broker, a Broker belongs to...
  7. chintapalli

    Single vs multiple databases

    Hi, I am curious to know 1. Would it be faster to run a query which accesses multiple tables spanned across multiple databases or the same query which accesses same tables which are all in one single database? 2. What are the various factors that needed to be considered to create multiple...
  8. chintapalli

    String output

    Hi, SQL Server 7.0 returns 256 characters of a table field with NVarChar 4000 length. Does anyone know why? Here is the sample code: ****************************Code begins*************** CREATE PROCEDURE SQLLengthTest AS DECLARE @STRtEST NVARCHAR(4000) SET @STRtEST =...
  9. chintapalli

    Subreport fields

    Hi, I have 12 picture objects in a sub report. I need to display only of them at a time based on a condition. I am instantiating the report in a VB designer form. I am trying to use the section format event. But couldn't figure out how to access subreport fields from the main report. Does...
  10. chintapalli

    Unable to Access first record

    Hi, I am calling a crystal report from Visual Basic 6.0. I call a Stored Procedure to get data in a record set. I am able to get the data from the database. But I get error "Unable to Access first record" when I am trying to export the record set data to a file. Does anyone know why I...

Part and Inventory Search

Back
Top