Results 1 to 4 of 4

Thread: Delete Access query object [Resolved]

  1. #1

    Thread Starter
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Delete Access query object [Resolved]

    I need to create a query in Access using vb called qryIDCount but
    I get an error if the query already exists. So I can either try to
    delete the query object or try to update the query to select from
    a different table. The query name needs to remain the same if it
    exists because it is used in a report. I have tied both methods
    and both return errors.

    This is the one to alter it if it exists.
    VB Code:
    1. If bQryExists = True Then
    2.     sSQL = "ALTER VIEW qryIDCount AS SELECT [" & cboComputer & "_" & cboLogType & "].Message,"
    3.     sSQL = sSQL & " Count([" & cboComputer & "_" & cboLogType & "].Message) AS evtCount"
    4.     sSQL = sSQL & " FROM [" & cboComputer & "_" & cboLogType & "]"
    5.     sSQL = sSQL & " GROUP BY [" & cboComputer & "_" & cboLogType & "].Message;"
    6.     goEnv.Cnn.Execute sSQL
    7. End If
    This is the one to delete if exists.
    VB Code:
    1. sSQL = "CREATE VIEW qryIDCount AS SELECT [" & cboComputer & "_" & cboLogType & "].Message,"
    2. sSQL = sSQL & " Count([" & cboComputer & "_" & cboLogType & "].Message) AS evtCount"
    3. sSQL = sSQL & " FROM [" & cboComputer & "_" & cboLogType & "]"
    4. sSQL = sSQL & " GROUP BY [" & cboComputer & "_" & cboLogType & "].Message;"
    5. goEnv.Cnn.Execute sSQL
    Any ideas?

    Thanks in advance for any help.
    Last edited by RobDog888; Nov 20th, 2003 at 02:59 PM.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  2. #2
    Frenzied Member Shawn N's Avatar
    Join Date
    Dec 2001
    Location
    Houston
    Posts
    1,631
    Try this:

    Code:
    if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[qryIDCount]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
    drop procedure [dbo].[qryIDCount]
    GO
    Please rate my post.

  3. #3

    Thread Starter
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709
    I am using an Access database. Your code is for SQL.
    Anything similar for Access?
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  4. #4

    Thread Starter
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709
    Found it!
    VB Code:
    1. sSQL = "DROP VIEW qryIDCount;"
    2. goEnv.Cnn.Execute sSQL
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width