The answer to your question is yes, but such a thread isn't really very reliable. You can take a look at http://msdn2.microsoft.com/en-us/library/system.threading.thread.aspx for an example of how to start it. A thread started like that will not be associated with any ASP session, and it will...
I am relatively new to XSLT, so i hope this isn't too noobish.
The task at hand is creating a web page where the result of some transform is displayed in a table, which has column headers that users can click to sort it. What I have is currently working, and for simplicity I removed all but...
I am looking for an updated xml schema file of *.wsf files. I have been using the one that shipped w/ VS.NET 2003 but it is no longer current. Is there anybody who has VS.NET 2005 who could send me the updated schema document? I use a schema aware xml editor and having an updated copy would...
I am a programmer on a rather large, old, and ugly asp web application, which uses oracle, msxml, and ado. This is a 'project in crisis' as it has become extremely difficult to maintain. Much of it is spaghetti code, and its original developers had no idea what the word 'modular' means. And...
I am charged with reviewing our change management procedures at my company. We already have a database script template that records bug/issue information when a script is run (just a few lines of code saved above the actual changes), and I would like to expand this information to include the...
That would be perfect, except that it doesn't exist on 9i. When I try to call it, I get a 'invalid identifier' error. Is this something that our DBA must setup?
I think that it would. What I need is functionality that I've seen in every DOM implementation I've ever used; I'm just having trouble finding it in dbms_dom. Exactly what procedure in this package allows you to evaluate xpath expressions?
I'm new oracle's xml capabilities, and I'm having trouble making sense of the mountains of reference material available. I've had success with a couple of very ugly attempts, but I'm sure that I'm making this much more complicated than it needs to be.
My procedure is given an xmltype such as...
Well, I did finally have some luck using CLOBs. If CLOBs have OIDs, then perhaps the theory is wrong. I was able to create an OracleClob in .NET and pass it to an sp with no problems.
I'm still not sure what the problem was, but it is a whole lot easier to put something like "xml_value :=...
I am developing an application that uses ODP with 9i release 2, and I'm having trouble creating xmltype input parameters. I posted a detailed description of the problem here The problem I'm having is specific to 9i; doesn't happen when connecting to a 10g database.
Does anybody have...
Thank you very much for your help--this problem has been frustrating me for the entire day.
I tried a workaround. I create a function that returns an xmltype that always contains the document <xml/>. In .NET, I call this function and get the resulting OracleXmlType object, then use the Update...
I have a web application where a web service written in C# coordinates communication between an Oracle 9i release 2 database and the rest of the application. In a method that is used to call store procedures, I am trying to add the ability to create xmltype input parameters.
Everything works...
yes, well thank you for all the lovely banter, but the rowcount statement was just something i threw in there for demonstration. I didn't consider the 15 lines in between opening the cursor and the put_line relevant. The cursor doesn't return any rows even when I check the rowcount after...
Yes, this is how i'm sure of what those values are.
I've tried opening the cursor in a number of ways, and it always fails to return any rows. Below is the current code that I'm using to open the cursor in the inner loop:
open new_child_orgs(l_child.id);
dbms_output.put_line('child id ' ||...
Unfortunately you are out of luck unless you are familiar with writing modules for access. BLOB/OLE Object fields are usually used to store non-character data, and access doesn't provide any built-in interface to edit or view their contents.
If it is feasible, consider changing your BLOB...
consider the following:
for l_child in (select *
from dropdown
where (p_category='Action' and
category='Reason' and
type=l_orig_contents)
or (p_category='Action' and...
Thanks for the reply. I have found another way to do what I needed, though. The SQL that wouldn't open was
WITH Stations AS (SELECT contents as station, type as sector, type2 as region, side as address, side2 as city, side3 as state, side4 as zip FROM dropdown WHERE category='Station') SELECT...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.