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 bkrike 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: ibethea
  • Content: Threads
  • Order by date
  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 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...
  6. 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...
  7. 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...
  8. 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?
  9. 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...
  10. 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.
  11. 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?
  12. 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...
  13. ibethea

    Migration SQL7 to SQL2000

    Within the next two weeks I will begin the process of migrating database server to a new Windows 2000 platform running SQL 2000 from a Windows NT platform running SQL7. I have three SQL servers. Two of which are running MDAC 2.5 and the other running MDAC 2.6. I have a number of DTS Job running...
  14. ibethea

    Mail Notification Not Working

    Email notification have worked for Job in the past. I check the SQLserverAgents on both servers and they ar running. I have tested the mail profiles on two servers. The session in the test appear successful. However, when I view the error logs I get the following errors. Server1 [260] Unable...
  15. ibethea

    DTS runs but Scheduled Job will not run the DTS

    The job ran previously. I only changed two field transformations and tried to re-run the job. It failed. I ran the DTS and it succeeded. I get the following error when I try to run the job. ... DTSRun: Executing... DTSRun OnStart: Delete from Table [XXXXXXXX].[dbo].[YYYYYYYY] Step...

Part and Inventory Search

Back
Top