Forum Replies Created

Viewing 11 posts - 1 through 11 (of 11 total)

  • RE: Weekly report through whole year

    Hi

    Exactly same tables and data. But instead of having 'week1', 'week2' etc as columns I would like to have dates for example '01.04.2013', '02.04.2013', etc. I need to be able...

  • RE: Weekly report through whole year

    What about if I want same scenario between 1.4.2013 and 14.42013? So each day within this date range is displayed as column?

  • RE: Weekly report through whole year

    Brilliant!!

    That's what i needed.

    Thanks a lot!

  • RE: data for chart

    all fixed

    used temp tables in stored procedure

  • RE: query for graph

    Hi

    Thank you for your reply

    It is nearly exactly how I wanted.

    Where should I put WHERE clause to be able to add SupplierID parameter? I need to get exactly same output...

  • RE: query for graph

    i dont need supplier id sorry ignore it pls

  • RE: query for graph

    dont need supplier id guid sorry, ignore it

  • RE: query for graph

    I need count of impressions and clicks for supplier(only one supplier at the time) grouped by Month/Year (fromSupplierImpressionDate/SupplierClickDate)

    SupplierId will not be in output, it is parameter (where clause i think)

  • RE: query for graph

    CREATE TABLE [dbo].[tbl_supplier_impressions](

    [SupplierImpressionId] [int] IDENTITY(1,1) NOT NULL,

    [SupplierId] [uniqueidentifier] NOT NULL,

    [ImpressionDate] [datetime] NOT NULL,

    CONSTRAINT [PK_tbl_supplier_impressions] PRIMARY KEY CLUSTERED

    (

    [SupplierImpressionId] ASC

    )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY =...

  • RE: query for graph

    sorry, jusr red article

    table_impressions

    CREATE TABLE [dbo].[tbl_supplier_impressions](

    [SupplierImpressionId] [int] IDENTITY(1,1) NOT NULL,

    [SupplierId] [uniqueidentifier] NOT NULL,

    [ImpressionDate] [datetime] NOT NULL,

    CONSTRAINT [PK_tbl_supplier_impressions] PRIMARY KEY CLUSTERED

    (

    [SupplierImpressionId] ASC

    )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE =...

  • RE: query for graph

    Hi

    I am trying something like this http://demos.telerik.com/aspnet-ajax/chart/examples/databinding/database/defaultcs.aspx

    top chart.

    I havent got anything written yet, quite new to sql

    table_impressions

    impressionid | SupplierID | ImpressionDate

    1 | 1 | 2012-01-01

    2 | 1 |...

Viewing 11 posts - 1 through 11 (of 11 total)