spCheckDuplicateCharName Script

Results 1 to 4 of 4
  1. #1

    spCheckDuplicateCharName Script

    The database is missing that stored procedure so I need it to fix my problem.
    Can some one give me the script of it?


  2. #2
    Ā  Phoenix is offline
    ModeratorRank
    Mar 2009 Join Date
    6,890Posts

    Re: spCheckDuplicateCharName Script

    Code:
    GO
    /****** Object:  StoredProcedure [dbo].[spCheckDuplicateCharName]    Script Date: 02/01/2011 20:15:07 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    create proc [dbo].[spCheckDuplicateCharName]   
     @Name varchar(24)  
    as
     set nocount on  
     select top 1 cid from character(nolock) where deleteflag <> 1 and name = @Name

  3. #3
    Pee Aitch Pee Dave is offline
    MemberRank
    Mar 2011 Join Date
    The NetherlandsLocation
    722Posts

    Re: spCheckDuplicateCharName Script

    Code:
    USE [GunzDB]
    GO
    /****** Object:  StoredProcedure [dbo].[spCheckDuplicateCharName]    Script Date: 06/04/2011 17:56:43 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    
    create proc [dbo].[spCheckDuplicateCharName]   
     @Name varchar(24)  
    as
     set nocount on  
     select top 1 cid from character(nolock) where deleteflag <> 1 and name = @Name
    This?

    AFF PHOENIX FASTER :@

  4. #4

    Re: spCheckDuplicateCharName Script

    Thanks both.



Advertisement