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. gprima

    Can this be done?

    This code will get you the vendors who have alphabetical names between 'Jones Supply' and 'Smith_Sales' declare @BeginVendor varchar(30), @EndVendor varchar(30) set @BeginVendor = 'Jones Supply' set @EndVendor = 'Smith_Sales' Select Vendor_name from Vendors where Vendor_name between...
  2. gprima

    Exporting to Excel

    Create a DTS package. First open up a connection with the Microsoft OLE DB Provider for SQL Server. Login to the SQL server with windows authentication or SQL Server authentication, which ever is appropriate. Then select the database you need to connect to. Next make a connection to Microsoft...
  3. gprima

    Retreiving Data from a Database using VB6

    JEDEL I pulled this code out of an application of mine that is currently in production. It includes a class called clsDataBase and a sub routine that will pull data from a client database through the class. I hope the following code helps. 'This a class I call clsDataBase Option Explicit...
  4. gprima

    Conversion from Access97 to Sql server 2000

    Check out the upsizing wizard that comes with access 97
  5. gprima

    changing the default location for new databases

    Open Enterprise Manager Right click on the server and select "Properties" Click on the database settings tab of the dialog window At the bottom of the dialog window either enter the new location or click on the elipsis to the right and set the path Hope this helps Gary

Part and Inventory Search

Back
Top