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 Chriss Miller 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. SundancerKid

    Stored Procedure Temp Table access in SSIS

    Works Great Dave. I gave you a Star!!
  2. SundancerKid

    Stored Procedure Temp Table access in SSIS

    Thanks RiverGuy, Do you have any examples of table variables?
  3. SundancerKid

    Stored Procedure Temp Table access in SSIS

    I am trying to create a Stored Procedure that the columns can be accessed in SSIS and processed. Here is an example of the code that I am trying to produce: MS SQL 2005 and Visual Studios 2005. CREATE PROCEDURE AIMS_sp_BuildReport04_Barcode_No_Match AS SET NOCOUNT ON CREATE TABLE...
  4. SundancerKid

    Query View Field Definition

    George thanks so much!
  5. SundancerKid

    Query View Field Definition

    Hi All, I would like to produce a field definition list so that I can export it to excel. Does any know how I would do this?
  6. SundancerKid

    Create Stored Procedure with temp table

    Thanks for the Quick Reply Mufasa, What I am looking for is an example of a working Stored Procedure where they join more than 2 files together and use temp tables. Thanks, Rick
  7. SundancerKid

    Create Stored Procedure with temp table

    I would like to create a stored procedure that contains the following logic: Create myproc with out parameters TempCPT4F Create tempA1 table Create tempA2 table Create tempB1 table Create tempB2 table Create tempC1 table Create tempC2 table Create TempCPT4F table...
  8. SundancerKid

    Crystal Reports Create External Custom Functions

    Hi Turkbear thanks for your response. Using Business Objects XI R2 SP4 Business View Manager XI R2 SP4 Crystal Reports XI R2 SP4 Oracle 10g Report is built using Business View Manager. My Problem is I can not pass the UserName to a Stored Procedure because I am using One UserName as my Data...
  9. SundancerKid

    Crystal Reports Create External Custom Functions

    Hi All, Is it possible to create a custom function that queries an Oracle Table and brings back the results?? I have a Table in the Main (Relationship=1-1) and another Table (Relationship=1-Many) which has nothing to do with my report except I need to know if the userid exists against the...
  10. SundancerKid

    Crystal Evaluate Syntax

    I think I might have gotten past the syntax problem, but I am not getting any results here is my code. I can see the results for @EvalTechnician but not @EvaluateWhereExists . Any Suggestions????? @EvaluateWhereExists I am using this code as a suppress formula because I can not use it...
  11. SundancerKid

    Crystal Evaluate Syntax

    Hi All, I need to evaluate the following and I think my syntax is wrong. Please help!! IF ({Q.SAMPLENO} = {Q.MASTERSAMPLENO} OR ISNULL({Q.MASTERSAMPLENO})) OR {Q.ISTIMEWEIGHTED} <> -1) AND {Q.APPROVED} = -1 AND ***** This replaced the Oracle Function ***** (IF...
  12. SundancerKid

    Cascade Dynamic parameter from Static Parameter Crystal XI

    Hi Ido, I think you are talking about the DataLink Viewer. Can you intergrate the DataLink Viewer with Business Objects XI R2 InfoView? Thx Rick
  13. SundancerKid

    main report parameter subreport

    I know how to use shared values. How can I get the CurrentCEUserName passed from a subreport to the main report and have it populate a UserName parameter on the main report? We are on Crystal Reports XI R2 SP4.8
  14. SundancerKid

    main report parameter subreport

    I know I can create a blank main report and add my detail to a subreport and pass the CurrentCEUserName from the Main Blank Report to the subreport and this will prevent the subreport from prompting a parameter that is referenced in a stored procedure. I would like to know is there anyways to...
  15. SundancerKid

    Create Oracle View and calling a function

    When used in a Stored Procedure it is used as wh := ' FROM MV_IHSAMPLE WHERE ' || Function_AthruZ('',''); The Function_AthruZ returns the results as '1 = 0' or '1 = 1' So I could say Select a, b, c From ABCClub Where Function_AthruZ ( 'p_ccn', 'p_type') = '1 = 1' is that right?
  16. SundancerKid

    Create Oracle View and calling a function

    It is not working in Where Clause
  17. SundancerKid

    Create Oracle View and calling a function

    I want to use a function in the Where clause. I was trying to use it like this Select a, b, c From ABCClub Where (Select Function_AthruZ ( 'p_ccn', 'p_type') as MyResults from dual) Function_AthruZ is the Function I am calling and it has 2 Parameters and it is returning a VarChar2 field...
  18. SundancerKid

    Create Oracle View and calling a function

    How would I call a Function within an Oracle View?
  19. SundancerKid

    How to mimic 'NOT EXISTS' in Crystal Reports XI R2

    Problem Solved What I did was I to the Original Oracle View and added the SurveyProduct to the Select statement as a Left Outer Join and then I added the ProductID to the Select. In Crystal instead of using a detail line I am using a Group on SurveyID so that I get unique SurveyID's. Since...

Part and Inventory Search

Back
Top