473,796 Members | 2,573 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

xsl Question


Hello again...
Im using XMl/xsl to generate text report from a service
getting data to xml from sqlserver 2005

xml generates ok
but when xslCompiledTran sform runs
i get a StackoverflowEx ception

i have 11,000 rows of data going through....is this just too much for Xsl

tks
Jan 8 '08 #1
5 1353
C#?
i have 11,000 rows of data going through....is this just too much for Xsl
I shouldnt' have thought so. This probably points more to a bug in the
code. First test - does it work for smaller volumes? Next: are you
doing anything deeply recursive in the xsl? A typical thing to look
for would be templates that call each-other (possibly itself) -
typically passing arguments (xsl:param, xsl:with-param) to enumerate a
sequence.

Likewise, the same things are possibly if you using script inside the
xslt (although this is less common).

I've used xsl on some pretty large fragments without issue. The other
thing to watch is that the overall structure needs to be better... you
can't get away with much laziness (//Something, just to save typing
the path, etc) - and proper consideration of indexing (xsl:key,
Muenchean grouping, etc), variable usage, etc gets more important.

Marc
Jan 8 '08 #2
the xsl works just fine with smaller volumns...
i'll double check the xsl...
Im Pretty new to xsl

its a fairly simple report for users
Header,
1xxxxxxxxxxxxxx xxxxxxxxxxxxxxx xxxxxxxxxxxxxx
2
3
4
---------------------------------------------------
ITem Totals Max Types about 20 lines totals each item
item type 1 total
item type 2 total
item type 3 total

Detail lines
//all the line items here 11000 of them
line 1
line 2
etc

tks

"Marc Gravell" <ma**********@g mail.comwrote in message
news:53******** *************** ***********@v4g 2000hsf.googleg roups.com...
C#?
>i have 11,000 rows of data going through....is this just too much for Xsl

I shouldnt' have thought so. This probably points more to a bug in the
code. First test - does it work for smaller volumes? Next: are you
doing anything deeply recursive in the xsl? A typical thing to look
for would be templates that call each-other (possibly itself) -
typically passing arguments (xsl:param, xsl:with-param) to enumerate a
sequence.

Likewise, the same things are possibly if you using script inside the
xslt (although this is less common).

I've used xsl on some pretty large fragments without issue. The other
thing to watch is that the overall structure needs to be better... you
can't get away with much laziness (//Something, just to save typing
the path, etc) - and proper consideration of indexing (xsl:key,
Muenchean grouping, etc), variable usage, etc gets more important.

Marc

Jan 8 '08 #3

I would also take a working smaller set, and then COPY PASTE it alot of
times, to get back to up your large size.

That way, since you know the smaller set works, that copies of it should
work....and you can determine if its the size

OR

its a certain section of records that breaks it.

StackoverflowEx ception could be bad math as well.
Do you have any math functions? (division?)
Multiplying to very large ints?

Something like that.
I would try to figure out whether its size or bad numbers first off.


"Analizer1" <dv*****@sbcglo bal.netwrote in message
news:rA******** **********@news svr21.news.prod igy.net...
the xsl works just fine with smaller volumns...
i'll double check the xsl...
Im Pretty new to xsl

its a fairly simple report for users
Header,
1xxxxxxxxxxxxxx xxxxxxxxxxxxxxx xxxxxxxxxxxxxx
2
3
4
---------------------------------------------------
ITem Totals Max Types about 20 lines totals each item
item type 1 total
item type 2 total
item type 3 total

Detail lines
//all the line items here 11000 of them
line 1
line 2
etc

tks

"Marc Gravell" <ma**********@g mail.comwrote in message
news:53******** *************** ***********@v4g 2000hsf.googleg roups.com...
>C#?
>>i have 11,000 rows of data going through....is this just too much for
Xsl

I shouldnt' have thought so. This probably points more to a bug in the
code. First test - does it work for smaller volumes? Next: are you
doing anything deeply recursive in the xsl? A typical thing to look
for would be templates that call each-other (possibly itself) -
typically passing arguments (xsl:param, xsl:with-param) to enumerate a
sequence.

Likewise, the same things are possibly if you using script inside the
xslt (although this is less common).

I've used xsl on some pretty large fragments without issue. The other
thing to watch is that the overall structure needs to be better... you
can't get away with much laziness (//Something, just to save typing
the path, etc) - and proper consideration of indexing (xsl:key,
Muenchean grouping, etc), variable usage, etc gets more important.

Marc


Jan 8 '08 #4
Depending on how big it is, if you can post the file I can perhaps
look for anything obvious?

In particular the "totals" stuff - if you are doing this via recursion
there may be better approaches for xsl...

Marc
Jan 9 '08 #5
let me exaust all my testing....got a couple more tests left...
double checking all the data is correct, stored procs checking for nulls

take me about another hour....im hopful i can find data problems

tks
"Marc Gravell" <ma**********@g mail.comwrote in message
news:3f******** *************** ***********@v67 g2000hse.google groups.com...
Depending on how big it is, if you can post the file I can perhaps
look for anything obvious?

In particular the "totals" stuff - if you are doing this via recursion
there may be better approaches for xsl...

Marc

Jan 9 '08 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
5044
by: Stevey | last post by:
I have the following XML file... <?xml version="1.0"?> <animals> <animal> <name>Tiger</name> <questions> <question index="0">true</question> <question index="1">true</question> </questions>
3
3093
by: Ekqvist Marko | last post by:
Hi, I have one Access database table including questions and answers. Now I need to give answer id automatically to questionID column. But I don't know how it is best (fastest) to do? table before rowID answID qryrow questionID datafield 1591 12 06e 06e 06e question 1593 12 06f 06f 06f question 1594 12 answer to the question 06f
53
4096
by: Jeff | last post by:
In the function below, can size ever be 0 (zero)? char *clc_strdup(const char * CLC_RESTRICT s) { size_t size; char *p; clc_assert_not_null(clc_strdup, s); size = strlen(s) + 1;
56
4805
by: spibou | last post by:
In the statement "a *= expression" is expression assumed to be parenthesized ? For example if I write "a *= b+c" is this the same as "a = a * (b+c)" or "a = a * b+c" ?
2
4285
by: Allan Ebdrup | last post by:
Hi, I'm trying to render a Matrix question in my ASP.Net 2.0 page, A matrix question is a question where you have several options that can all be rated according to several possible ratings (from less to more for example). I have a question object that has two properties that contain the collections Options and Ratings. now I want this kind of layout: --- Rating1 Rating2 Rating3 Option 1 () () ...
0
9530
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10459
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10182
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9055
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6793
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5445
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4120
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3734
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2928
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.