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!

Recent content by asolds

  1. asolds

    authenticate to eDirectory using LDAP

    Hello, does anyone have a code snippet to authenticate users to nds using LDAP and ASP jscript? Thanks.
  2. asolds

    ERROR: 'SQLOLEDB' was unable to begin a distributed transaction

    I'm receiving the same error. Did you have any luck resolving this? Thanks.
  3. asolds

    inserted table doesn't have values

    Thank you for your help, but I figured out what teh issue was. The reason I believe the inseretd logical table wasn't storing the values was because the application was first performing an insert into t_ccs_queue table to set the identity column and then updating this record with the app_id...
  4. asolds

    inserted table doesn't have values

    That's correct, however, it does exist and always will.
  5. asolds

    inserted table doesn't have values

    Sorry, I insert the values into another table. Here is the full trigger: CREATE trigger ats_file_retrieve on dbo.t_ccs_queue for insert as begin declare @queue_name varchar(50) declare @app_id int select @queue_name = act.activity_desc, @app_id = inserted.app_id from...
  6. asolds

    inserted table doesn't have values

    The variables @queue_name and @app_id are null in the following trigger. However, the app_id and queue_activity_id fields within the t_ccs_queue table are not null - seems like the inseretd table is not storing the values. Any suggestions? CREATE trigger ats_file_retrieve on dbo.t_ccs_queue...

Part and Inventory Search

Back
Top