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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by ibethea

  1. ibethea

    User Defined Function and Processing the next record

    I have an MS Access user defined function that I must recreate in SQL Server. Public Function durCalc(projNum As String, changeDt As Date) As Integer Dim calcDur As Integer 'gchangeDt and gprojNum are global variables whose value 'come from the previous record durCalc = 0 If projNum = gprojNum...
  2. ibethea

    Passing a String Variable to SQL "IN" Statement

    The problem is explained after the Select statement. The problem is within the where clause, using "IN(@text)". ALTER Procedure usp_MilestoneChangeList (@chDays as int, @Text as nvarchar(100)) AS SELECT DISTINCT t_project.[JDE Proj Num], t_project.projectReportdesc...
  3. ibethea

    Access adp and Stored Procedures Running under Citrix

    Hi, Problem: Access 2000 .adp SQL stored procedure problem using citrix In my Access 2000 .adp application running under citrix, I am not able to successfully run any store procedures within the applcation. Where there are form objects dependent upon store procedure to populate them (i.e...
  4. ibethea

    Changing the Record source in a subform

    I'm not able to reference a subform to change the recordset. here is some code: ... rst.CursorLocation = adUseClient strSQL = "SELECT t_projectStaff.[JDE Proj Num] AS [JDE Number], [firstname] + ' ' + [lastname] AS FullName," & _ " t_codes.Description AS Title...
  5. ibethea

    Running Access .adp under Citrix - Store Procedures work properly

    I always name the stored procedure with the "dbo." prefix; (i.e dbo.usp_ProjectStaff) is defined as the recordsource. It appears the citrix is not able to find the parameter need by the stored procedure. This parameter is a field on the main form, which gets passed to the stored...
  6. ibethea

    Running Access .adp under Citrix - Store Procedures work properly

    I am running an Access .adp which includes several stored procedures in combo boxes and form record sources. The stored procedures accept form fields to determine which values to return within a combo box or form record source. Under citrix the combo boxes or forms do not return any values or...
  7. ibethea

    "error accessing file."

    After importing an form into a .adp I try to open the form and I get the message "error accessing file." "Network connection may have been lost." I do not get this with every import. It is possible that the imported for may have been related to a linked table. The error...
  8. ibethea

    I recieved the following message in

    I recieved the following message in the view history of the Job: Cannot allow BACKUP LOG because file 'XXXX' has been subjected to nonlogged updates and cannot be rolled forward. Perform a full database, or differential database, backup. [SQLSTATE 42000] (Error 4213) Backup or restore operation...
  9. ibethea

    Setting up a DTS Job with SQL Authentication vs Windows

    Are there advantages and/or Pitfalls to using SQL authentication with an administrator account for DTSs .vs. just using a windows account for authentication?
  10. ibethea

    Conflict with Foreign key constraint

    I though that was the case. The bidproposal table has null values, which is not acceptable to the bidDisposition table because the bidDisposition does not accept null values as part of the primary key. Thanks you Chiph.
  11. ibethea

    Conflict with Foreign key constraint

    what caused the following error? how might it be resolved? Server: Msg 547, Level 16, State 1, Line 1 UPDATE statement conflicted with COLUMN FOREIGN KEY constraint 'FK_BidProposal_BidDispositionCode'. The conflict occurred in database 'MwbeTsDvlprNew', table 'BidDisposition', column...
  12. ibethea

    Move AND SQL AND JOB AND Different AND Server

    I have scores of Jobs on a SQL Server that I would to copy and/or move to a different server. Is there a way to do this without maually re-creating each job from scratch on the new server.
  13. ibethea

    Julian Date Conversion

    Thanks people. I'm just back from vacation. This will generally work. I'll need to make some adjustments for leap year and some other formatting issues. However, I believe these solutions address the problem.
  14. ibethea

    Move Scheduled Jobs From One Server To Another

    How can I move my scheduled jobs from one server to another, without having to re-create them?
  15. ibethea

    Julian Date Conversion

    I have a date which is in the following format "2002105" The first four characters are the year the next three characters are the number day of year. How would I convert this to a datetime format: Example DateFunction('2000032') should return 2000-02-01 DateFunction('2002098') should...

Part and Inventory Search

Back
Top