Ned db table structure forTrade sop and auction shop

Results 1 to 5 of 5
  1. #1
    RoRivals gaby001 is offline
    MemberRank
    Aug 2011 Join Date
    RomaniaLocation
    386Posts

    idea Ned db table structure forTrade sop and auction shop

    hello who can share table structure and procedures
    for trade and auction shoop ned to upgrade db

    Tancx
    Last edited by gaby001; 17-05-21 at 08:27 AM.


  2. #2
    Valued Member xxradicaldxx is offline
    MemberRank
    Sep 2014 Join Date
    in your heartLocation
    101Posts

    Re: Ned db table structure forTrade sop and auction shop

    for that you can create your own table and design it as you want

  3. #3
    Ned db table structure  forTrade sop and auction shop St34lth4ng3l is offline
    MemberRank
    Apr 2013 Join Date
    __FILE__Location
    899Posts

    Re: Ned db table structure forTrade sop and auction shop

    There you go, do whatever you want to do with it....i myself think it's retarded to save the ItemName but hey....blame it on the koreans

    Code:
    -- ----------------------------
    -- Table structure for td_Market
    -- ----------------------------
    IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[td_Market]') AND type IN ('U'))
        DROP TABLE [dbo].[td_Market]
    GO
    
    CREATE TABLE [dbo].[td_Market] (
      [TransactionNum] bigint  IDENTITY(1,1) NOT NULL,
      [SellingItemUID] bigint  NULL,
      [AccountUID] int  NULL,
      [SellerCharUID] int  NULL,
      [TradeItemKind] tinyint  NULL,
      [ItemName] varchar(140) COLLATE SQL_Latin1_General_CP1_CI_AS  NULL,
      [ItemNum] int  NULL,
      [Count] int  NULL,
      [PrefixCodeNum] int  NULL,
      [SuffixCodeNum] int  NULL,
      [EnchantCount] tinyint  NULL,
      [ShapeItemNum] int  NULL,
      [ColorCode] int  NULL,
      [ReqMinLevel] tinyint  NULL,
      [ReqUnitKind] int  NULL,
      [RegistrationTime] datetime DEFAULT getdate() NULL,
      [TypeOfMoney] tinyint  NULL,
      [Price] int  NULL,
      [TradeStatus] tinyint  NULL,
      [BuyerUID] int DEFAULT 0 NULL,
      [BuyingTime] datetime DEFAULT 0 NULL,
      [InfluenceType] tinyint DEFAULT 0 NULL
    )
    GO
    
    ALTER TABLE [dbo].[td_Market] SET (LOCK_ESCALATION = TABLE)
    GO
    
    
    -- ----------------------------
    -- Auto increment value for td_Market
    -- ----------------------------
    DBCC CHECKIDENT ('[dbo].[td_Market]', RESEED, 2)
    GO

  4. #4
    Valued Member xxradicaldxx is offline
    MemberRank
    Sep 2014 Join Date
    in your heartLocation
    101Posts

    Re: Ned db table structure forTrade sop and auction shop

    I will add this table in the code of tc & auction. thanks for sharing

  5. #5
    Apprentice PhatLA is offline
    MemberRank
    Oct 2020 Join Date
    On EarthLocation
    23Posts

    Re: Ned db table structure forTrade sop and auction shop

    thanks for DB sharing ^^



Advertisement