Viewing 14 posts - 1 through 14 (of 14 total)
lmu92, interesting approach.
I need time to get into.
March 31, 2009 at 2:45 pm
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.
🙂
March 31, 2009 at 10:44 am
--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...
March 31, 2009 at 6:56 am
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...
March 30, 2009 at 5:57 pm
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,...
March 30, 2009 at 5:34 pm
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,...
March 30, 2009 at 5:16 pm
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
March 30, 2009 at 4:59 pm
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...
March 28, 2009 at 5:55 pm
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...
March 28, 2009 at 8:42 am
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...
March 28, 2009 at 7:08 am
I'm new to this concepts,
how can I get the Rownumber of particular primary key to go to this page?
Regards Davor
February 13, 2009 at 5:23 pm
Thnx Ten, for tip.
I have resolved the generation of the test data with INSERT INTO & cross join.
Davor
🙂
December 17, 2008 at 3:36 pm
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....
June 1, 2007 at 9:54 am
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.
May 14, 2007 at 12:52 pm
Viewing 14 posts - 1 through 14 (of 14 total)