Forum Replies Created

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

  • RE: Group By or maybe not?

    lmu92, interesting approach.

    I need time to get into.

  • RE: Group By or maybe not?

    lmu92 (3/31/2009)


    Hi,

    is it possible that you're using SQL Server 2008?

    It's true, I'm using SQL server 2008, but we can make the sintax compatible with 2000 and (or) 2005.

    🙂

  • RE: Group By or maybe not?

    --create table konta

    IF EXISTS (SELECT * FROM sys.objects

    WHERE object_id = OBJECT_ID(N'[dbo].[Konta]') AND type in (N'U'))

    DROP TABLE [dbo].[Konta]

    GO

    CREATE TABLE [dbo].[Konta](

    [SIFRA] [nvarchar](20) NULL,

    [NAZIV] [nvarchar](60) NULL,

    [KUDO] [nvarchar](1) NULL

    ) ON [PRIMARY]

    GO

    --create table...

  • RE: Group By or maybe not?

    OK.

    I will give a try to explain and follow the article for code and example data, but here is 3 AM and my english is not so good. So...

  • RE: Group By or maybe not?

    It's for financial calculations here in Croatia.

    Here we have something that is called Brutto Bilance.

    It's something like hierarchicly presenting money on accounts.

    1,12,1200,4,4100,.... this are accounts.

    So 12 is part of 1,...

  • RE: Group By or maybe not?

    I have also 1 date field (we can call it Date1)

    so, in results I need to have also 4 columns:

    1. column = ID

    2. column with values Date1 <= @DateFrom,...

  • RE: Group By or maybe not?

    I can't believe that you did it in so simple way!!!!!

    This is brilliant.

    Thank you SSChasing Mays

    Can I make it a little complicated?

    Regards, Davor Geci

  • RE: Server Side Paging With SQL Server 2005

    I have played a little bid with this code.

    Here are 2 methods, 1. method that search a record and 2. method that retrives a page.

    1. method

    -- big thanks goes...

  • RE: Server Side Paging With SQL Server 2005

    Glad to help,

    I have edited the post several times.

    I have optimized it a little bit, so check if you have the last version.

    Maybe Jacob wants to put this in...

  • RE: Server Side Paging With SQL Server 2005

    Hello Franco,

    I implemented the algorithm in my project and it works like a baby with 1.5 millions of records.

    Thnx goes to Jacob.

    In this code I'm using table called UFAGL and...

  • RE: Server Side Paging With SQL Server 2005

    I'm new to this concepts,

    how can I get the Rownumber of particular primary key to go to this page?

    Regards Davor

  • RE: help begginer to loop with T-SQL

    Thnx Ten, for tip.

    I have resolved the generation of the test data with INSERT INTO & cross join.

    Davor

    🙂

  • RE: custom functions can they be without dbo.

    Thnx, guys for yours reply's

    In that case, is there any chance to catch the sql sent by the application to the server, and then to process it to add dbo....

  • RE: From Access --->>> SQL Server 2005 (IIF, Format, Shape, *,....)

    Thnx Jan for Your reply.

    I'm heaving the same Idea, but I wanted to see if there is some another approach or how did others manage this problem.

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