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 dencom 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 MichaelF81

  1. MichaelF81

    Forgotten Word PW

    fair enough. I appreciate the help either way. "Adults are just obsolete children and the hell with them." - Dr. Seuss
  2. MichaelF81

    Forgotten Word PW

    We recently found some files on my companies network that need to be accessed, but they are password protected. They are windows 2000, but the employee no longer works here to give us the password. Without buying software does anyone know how to use a hex-editor to find the password? I...
  3. MichaelF81

    If in a query

    What is happening is that in the newly created [level] field, it is just changing the actual level from 2, 3, 4 to 1. SO it is pulling them all, but it is actually pulling the wrong data. I tried SELECT TOP 100 PERCENT dbo.SubSection.[Level], dbo.Section.sectionID...
  4. MichaelF81

    If in a query

    SELECT TOP 100 PERCENT dbo.Section.sectionID, dbo.SubSection.SubSectionID, dbo.Qustn.QustnOrder, dbo.Qustn.QustnText, dbo.Qustn.QustnType, dbo.Section.sectionDesc, dbo.SubSection.SubSectionText, dbo.TargetSection.targetId, case when dbo.subsection.sectionid in(...
  5. MichaelF81

    If in a query

    except it is not an update statement, simply a select "Adults are just obsolete children and the hell with them." - Dr. Seuss
  6. MichaelF81

    If in a query

    SELECT TOP 100 PERCENT dbo.Section.sectionID, dbo.SubSection.SubSectionID, dbo.Qustn.QustnOrder, dbo.Qustn.QustnText, dbo.Qustn.QustnType, dbo.Section.sectionDesc, dbo.SubSection.SubSectionText, dbo.TargetSection.targetId, dbo.SubSection.Level, CASE when...
  7. MichaelF81

    If in a query

    how do I fix the above case? "Adults are just obsolete children and the hell with them." - Dr. Seuss
  8. MichaelF81

    SQL Parsing/Update/Insert Query

    Update Customer Set x = Left(Contact_Point, CharIndex(',', Contact_Point) - 1), y = LTrim(Right(Contact_Point, Len(Contact_Point)) - CharIndex(',', Contact_Point)) oops, two small mistakes, had a mistake after the comma in quotes, and the go is not needed. If I read it right, the...
  9. MichaelF81

    SQL Parsing/Update/Insert Query

    Update Customer Set x = Left(Contact_Point, CharIndex(', ', Contact_Point) - 1), y = LTrim(Right(Contact_Point, Len(Contact_Point)) - CharIndex(', ', Contact_Point)) GO "Adults are just obsolete children and the hell with them." - Dr. Seuss
  10. MichaelF81

    If in a query

    I know about cases, I tried SELECT TOP 100 PERCENT dbo.Section.sectionID, dbo.SubSection.SubSectionID, dbo.Qustn.QustnOrder, dbo.Qustn.QustnText, dbo.Qustn.QustnType, dbo.Section.sectionDesc, dbo.SubSection.SubSectionText, dbo.TargetSection.targetId CASE 'cc' when...
  11. MichaelF81

    If in a query

    I have a query pSELECT TOP 100 PERCENT dbo.Section.sectionID, dbo.SubSection.SubSectionID, dbo.Qustn.QustnOrder, dbo.Qustn.QustnText, dbo.Qustn.QustnType, dbo.Section.sectionDesc, dbo.SubSection.SubSectionText, dbo.TargetSection.targetId FROM dbo.SubSection INNER JOIN...
  12. MichaelF81

    What is wrong with this query?????

    I was just reading and thinking the same thing. "Adults are just obsolete children and the hell with them." - Dr. Seuss
  13. MichaelF81

    SQL Query and Update

    Thanks guys! "Adults are just obsolete children and the hell with them." - Dr. Seuss
  14. MichaelF81

    SQL Query and Update

    Ok, I want to run a query that pulls the 'userpwrd' from the 'users' and the 'users_bak' table where em_id is the same in both. So I see what the PW is in both tables, then update the 'users' table with the value of the 'userpwrd' in the 'users_bak'. I have tried a few queries for the select...
  15. MichaelF81

    Illustrator CS2 error on program open

    A user of mine is getting that error on files, some that are 13mb, others that are 33mb. She has 2gb of RAM with virtual memory set at 4096 so AutoCAD 2005 works. Any ideas? "Adults are just obsolete children and the hell with them." - Dr. Seuss

Part and Inventory Search

Back
Top