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 strongm 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: RJ5
  • Order by date
  1. RJ5

    Sybase vb. Microsoft

    Thanks Robert. randy : )
  2. RJ5

    return of datetime?

    thanks redham. however, i would like to store the result in a datetime type field. can i still use the CONVERT(VARCHAR(@DaTE),108)
  3. RJ5

    return of datetime?

    Say Rajeev, How do I insert a TIME only in a datetime character minus the date e.g. 0000-00-0000 21:00:00 thanks. Randy : )
  4. RJ5

    using Wild Card for ADO recordset Find in Visual Basic to a SQL 2000

    Hi, Try replacing the "=" sign with a LIKE. .Find ("QuotationNo LIKE '%10881'") This might do the trick Randy : )
  5. RJ5

    Foreign key????

    I've been using it all along! I just didn't know the terminologies. Thanks a lot guys. btw, visit the Philippines sometimes. I'll bring you to places far from the Abu Sayyaf..: ) randy : )
  6. RJ5

    Sybase vb. Microsoft

    oh shoot! : ( based on what you've told me, can you give me a substitute for set? left()? cast()? thanks man. randy : )
  7. RJ5

    Foreign key????

    hello again. Can anyone help me understand in the simplest way what FOREIGN KEY means, and how it is used in a SQL statement? I've been reading about it a long but I can't comprehend. Thanks so much. Randy : )
  8. RJ5

    Sybase vb. Microsoft

    hello guys. can anyone tell me the difference between a Sybase SQL and MS SQL? thanks. randy : )
  9. RJ5

    LIKE %?

    many thanks john. stay cool.
  10. RJ5

    LIKE %?

    Hello again. I'm having difficulty with the LIKE condition. e.g. CREATE PROCEDURE sp_NAME @lastname varchar(10) AS SELECT * FROM tbl1 WHERE wholename like %@lastname% How do I use a variable in a LIKE condition? I'm going to execute the SP in VB6. Thanks for any suggestion Randy : )
  11. RJ5

    FETCH STATEMENT

    Thanks again Terry. MOD and DIV are functions that I use in VB6. I haven't tried them in SQL though. : )
  12. RJ5

    FETCH STATEMENT

    Hello again. My fetch statement looks like this. DECLARE r_cursor CURSOR FOR SELECT * FROM rtemptable OPEN r_cursor FETCH NEXT FROM r_Cursor INTO @subdistcode,@itemcode, @qtycases,@qtypcs,@amtcases,@amtpcs,@convfac DECLARE @jj numeric, @jj1 numeric WHILE @@FETCH_STATUS = 0...
  13. RJ5

    FETCH into TABLE?

    Thanks again Terry. For my last question.....hehehehe...gotcha. Randy
  14. RJ5

    FETCH into TABLE?

    Thanks again Terry. Now for my final question. How do I insert the result of this select statement into a table? randy
  15. RJ5

    FETCH into TABLE?

    Thanks Terry. For example I have 2 tables, the first (tbl1) contains the distinct IDNo, Name , the second (tbl2) contains IDNo, Order, Total tbl1: tbl2: IDNO Name IDNO Order Total A0001 MJ A0001 Sauce 3 A0002...
  16. RJ5

    FETCH into TABLE?

    Thanks man.
  17. RJ5

    Hello. I am a VB6/ADO/SQL user.

    Hello. I am a VB6/ADO/SQL user. I have an upcoming project and I will be tasked to use VB4/SQL. How do I connect to SQL? Could anyone give me a sample program to connect to SQL? Any help would be highly appreciated. Thanks. Randy
  18. RJ5

    FETCH into TABLE?

    Hello. Can I store the values of a cursor into a temporary table? Can you give me a sampe code? Thanks. Randy
  19. RJ5

    SQL ON NT and WINDOWS 98

    Thanks Terry but i got it figured out. the table field where I am copying the data doesn't match the field length in the source.
  20. RJ5

    SQL ON NT and WINDOWS 98

    I created a BULK INSERT stored procedure in SQL installed in an NT station and it worked. I copied it in a Windows 98 platform and there was an error regarding "STREAM". No error description. Please help. Thanks.

Part and Inventory Search

Back
Top