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

  1. KiwiGuy

    Is Numeric in Sybase

    Hey Guys, Im trying to determin whether a string(between 2 strings) is Numeric or not in sybase sql eg AB12344BC = 1234 is numeric AB12n44BC = 12n44 is NOT numeric Any ideas? Ben p.s Sybase 11
  2. KiwiGuy

    VB Access linked tables problem

    Hey All, Calling all geeks out there, i have a small problem, im linking to a csv file in access via vb DAO(i know i know), but my problem is that when i link, it automatically determines the Type of the fields, eg. what it thinks is a date field becomes a date/time type. I need a way of...
  3. KiwiGuy

    Excel 2000 question

    sorry, we are not using userforms(not my choice old excel designed by previous developer), they are embeded ole objects on the sheet. Cheers
  4. KiwiGuy

    Excel 2000 question

    Anyone help me with this, How do you setup a tabbing order on a group of combo boxes (or any ole control) Cheers :)
  5. KiwiGuy

    Union Question

    Hey All, How do i use the results from a Union to insert into a tempory table? i thought it should be Select * Into #tmptable from (select a from b union select a from c) Help!!1
  6. KiwiGuy

    Left Join question

    Hey All, Ive got 2 tables im trying get some results from Table1 Table2 Fields A B A B 1 2 1 2 3 4 3 4 5 6 being a ms sql server man to get the items not matching between table 1 and 2...
  7. KiwiGuy

    Excel VBA Question.

    Hey All, Does anyone know how to create/change a range in excel vba. I want to be able to select a range say Col1 and Col3 then change that range so it looks at Col1 and Col5, Col1 will always be the same in the range but the second column selected could be any column, im using this to create...
  8. KiwiGuy

    Pivot Tables??

    Hey All, Has anyone got some code for creating a pivot table (as a stored procedure) in Oracle?. Cheers Ben http://www.pubs-uk.com
  9. KiwiGuy

    Pivot Tables??

    Hey All, Has anyone got some code for creating a pivot table (as a stored procedure) in Oracle?. Cheers Ben http://www.pubs-uk.com
  10. KiwiGuy

    Pivot Table in Oracle

    Hey All, Has anyone got some code for creating a pivot table (as a stored procedure) in Oracle?. Cheers Ben http://www.pubs-uk.com
  11. KiwiGuy

    Loss Connection Detection in ADO

    Thanks Guy, yes i agree tried using ado events, but as scorpio said this event is only kicked off if the connection is explicitly closed, sigh!!, i also was thinking along the lines of polling for a connection, but was hoping there was a easier why of handling it Cheers n beers Ben
  12. KiwiGuy

    Loss Connection Detection in ADO

    Is there event or something that will detect a loss of connection in ADO, eg you are access a db which the network goes down, ADO has still got a connection state of 1, any ideas??? Cheers Ben
  13. KiwiGuy

    Union All in a View

    The actual query does have set column names, but thats doesnt solve my problem :(
  14. KiwiGuy

    Union All in a View

    Hi All, Im trying to create a Union All in SQL Server but not having much luck, this is basically what im trying todo. create view aview as (Select * from tblA) Union ALl (Select * from tblb) Union ALl (Select * from tblc) Union ALl (Select * from tbld) all the tables are identical, so its...
  15. KiwiGuy

    Dynamic SQL in Sybase

    Hi All, Im trying to create a bit of Dynamic SQL in a Sybase stored procedure, im used to MS SQL Server so im not sure what im doing wrong in Sybase. Heres my bit of code declare @sql varchar(100) declare @sql2 varchar(100) Select @sql =...

Part and Inventory Search

Back
Top