Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: 4-4-5 Calendar Functions, Part 1

    I prefer the method of using a table to store fiscal period information.

    CREATE TABLE [dbo].[fscl_yr_wk]

    (

    [fscl_yr] [smallint] NULL,

    [fscl_yr_wk_nbr] [smallint] NULL,

    [fscl_prd_nbr] [smallint] NULL,

    [wk_bgn_dt] [datetime] NULL,

    [wk_end_dt] [datetime] NULL,

    [fscl_mth_wk_nbr] [smallint] NULL,

    [fscl_yr_wk_key_val] [nvarchar](6) NULL,

    [fscl_prd_key_val] [nvarchar](6)...

Viewing post 1 (of 1 total)