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 IamaSherpa 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. tjohnsb

    3724: Cannot delete the database .. .replication

    Thank you for your help. The database was labeled as LOADING in Enterprise Mannger and there was no hand underneath it. When I tried the statement sp_removedbreplication 'otgcopy2' I received an error message stating that the database was still loading and could not be removed. I even ran...
  2. tjohnsb

    3724: Cannot delete the database .. .replication

    I was restoring a database using T-SQL and received an error that the restore was terminating which resulted in the databse displaying in a loading state in Enterprise Manager. I received the following message when trying to delete the database: 3724: Cannot delete the database otgcopy2 because...
  3. tjohnsb

    88 GB Transaction Log Recovery

    The recovery mode is full.
  4. tjohnsb

    88 GB Transaction Log Recovery

    I need to recover some missing records but I have a problem. My transaction log is 88GB which has been growing since 3/29/03. My last good full backup was completed on 6/8/03 and differentials occur throughout the week. I need to recover data from 6/10/03 that is missing from a table. Can I...
  5. tjohnsb

    Utilities to view Oracle Redo and Archive Logs

    Hello! I was wondering if there were any utilities or Oracle functions that can be used to read Redo logs. I have a situation where I would like to view a transaction that took place a couple of days ago. Or maybe I am looking at the wrong logs, any advice? What is the recommended method of...
  6. tjohnsb

    Updating a cursor based on a #temp table with a cursor

    I solved my own problem. Amazing what a little bit a sleep and an embarassing post can do.
  7. tjohnsb

    Updating a cursor based on a #temp table with a cursor

    Hello All, I have posted my code which is lenghty. The problem I am experiencing is that my base table is not being updated. Any suggestions? declare @Event varchar(3),@F_Name varchar(20),@L_Name varchar(25), @M_Name varchar(15),@Social varchar(9),@Sex varchar(1), @Patcomm...
  8. tjohnsb

    Exporting Reports and Forms Between Access 2000 Databases

    I was wondering if there was anyway to get around having to open an Access 2000 database exclusivley in order to import/export forms, modules and reports. I currently have two database that I support being used by multiple persons. One is a development Access 2000 database and the other is a...
  9. tjohnsb

    Viewing SQL Server Transaction Logs Online - Log Explorer

    I have been reviewing literature about a product called Log Explorer. Being that the functionality to view online transaction logs for SQL Server is not available yet I needed to find something to do it for me. The product Log Explorer allows you the ability to review transactions in SQL Server...
  10. tjohnsb

    Restore of 6.5 master.dat to a different 6.5 server fails

    I am trying to set-up a test server(ServerB) to mirror my production server (ServerA). I have set-up ServerB with all of the same databases and devices that are on ServerA. When I restore the master.dat file from a back-up on ServerB I receive several error messages refering to database...
  11. tjohnsb

    Pausing macro

    I have a need to pause a macro for a minute and resume execution after the minute has passed. Are there any macro commands that can be used to do this? Can this be accomplished using the timer interval property. If so how?
  12. tjohnsb

    How to delete a concatenated char(13) + char(10) using an sp?

    My problem is unwanted concatenated carriage returns (char(13)) and line feeds (char(10)) in tables. I would like to create a stored procedure to search for and delete the concatenated characters. I have managed to track the problem linking the table into MS Access but I would like to be able...
  13. tjohnsb

    Creating a counter using a trigger in SQL Server 6.5

    Thank you LuvASP and Stan123 for your suggestions.&nbsp;&nbsp;I finally created the following code for my counter:<br><br>CREATE TRIGGER doctoridITrig ON tjohnso.tstvalid_doc FOR INSERT AS<br>DECLARE @maxss char(4), @maxsd int, @chrDOC char(5), @chrDOC1 char(5)&nbsp;&nbsp;&nbsp;/* FOR...
  14. tjohnsb

    Creating a counter using a trigger in SQL Server 6.5

    The following code displays a trigger that I have created to generate an id number that always has to display as five characters. The field type is char but the id number format has to display as a character and 4 integers, for example: T0001.&nbsp;&nbsp;The problem is that the code will work if...

Part and Inventory Search

Back
Top