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 John Tel 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: scliffe
  • Content: Threads
  • Order by date
  1. scliffe

    Troubleshooting a stored procedure

    I have a stored procedure that returns no results: CREATE PROCEDURE dbo.sp_att (@ID Core_AdmissionsNumber) AS CREATE TABLE dbo.StudentAtt(StudID Core_AdmissionsNumber) INSERT INTO dbo.StudentAtt (StudID) SELECT AdmissionsNumber FROM dbo.tbl_student_name WHERE...
  2. scliffe

    Passing a combo value over filter on the server

    I've looked at stored procedures but still cannot find the best way to filter by a combobox at the server end - I'm transferring as much across to Views as I can so that I can eventually go for an adp. Unfortunately, I can't find a way to transfer an ID number (or group of numbers) across to...
  3. scliffe

    Referencing Access combo box from SQL View

    Apologies if this is answered elsewhere - I couldn't find it. Basically, I have a view based on 2 other views. The 2 initial views running pretty quickly but as soon as they are combined, the time it takes increases greatly to about 35 seconds. In my limited experience I could then filter the...
  4. scliffe

    Exporting the results of a view as a text file

    Hi, This may be blindingly obvious but I'm having trouble exporting the results of a view on SQL to a text file (which is then imported into another package. I've 6 files to export - the table was easy enough with DTS but views aren't listed and I need to be able to automate it to execute each...
  5. scliffe

    Copying a file to the server then attaching to an e-mail

    We have as part of our interface an option for people to send texts or e-mails to others and want to add the option of attachments. These are then sent from the server to the recipients. Basically, we're looking at what options there are in copying the file selected (in the designed dialog box...
  6. scliffe

    Problems converting to MDE

    It might be obvious to many, but the error message Access gives when failing to convert to an MDE is, erm, vague at best... After a little searching I found the following info to be useful. Having used it on a couple of databases it worked without the "decompile" option needing to be carried...
  7. scliffe

    Printing a report and sending out e-mails whilst updating a table...

    Hi all, This may be obvious, but the following code gives me an error of "Multiple-step OLE DB operation generated errors. Check each OLE DB status value, if available. No work was done". The code seems to trip up on the txtAdmissionsNumber (emboldened below) having played around with...
  8. scliffe

    Printing a report determined by which combo box is not null

    I'm looking to change the design of a form so that there are 3 combo boxes (cmbStaff, cmbRoom, cmbClass) that either have a value to filter by or a Null value (e.g. I've set the code to make Null cmbRoom and cmbClass when you select an item from cmbStaff etc.) so only 1 combo box has a value. I...
  9. scliffe

    Moving a Switch statement from Access to SQL

    Hi, I've been trying to transfer the following statement in an Access query to a view in SQL and cannot figure out the best approach. I've investigated CASE but this fails whenever I use symbols like > but would be fine if I substituted in the CASE statement for a text entry. I'm sure its...
  10. scliffe

    Designing a booking system - Day/Time slot/Details

    Hi, I've designed the table and query structure of a database to book people into 1 of 3 different types of fitness suite programme. My initial plan was to select the date on the form (using a pop-up calendar) and this would then display the day's bookings (in a sub-form?) for each of the 15...
  11. scliffe

    How can I view the structure and links of a database?

    Hi, I'm looking to view the structure of a database in the same way that Dreamweaver displays the structure of a website, I realise that to do it in every bit of detail may be difficult, but I've only ever managed to view the basics like tables, fields and a list of relationships... Someone...

Part and Inventory Search

Back
Top