Viewing 15 posts - 196 through 210 (of 247 total)
Regarding "No datatype described as holding absolute precise numbers...", this quote from Books Online seems to contradict you:
The decimal data type can store...
July 12, 2007 at 7:11 am
Even if you use stored procedures, you are still embedding SQL (stored procedure calls) into your application.
One thing I've found is that it's important to not have SQL scattered all over...
June 5, 2007 at 7:06 am
What version of Informatica are you using?
Do your session and/or workflow logs for the workflow and session(s) having the problem report any errors? You said there's something about missing records,...
March 6, 2007 at 7:04 am
I've encountered problems when trying to set variables of a package that I'm executing, wonder if you're having the same problem? There is a problem in DTS that surfaces when dealing with...
November 6, 2006 at 7:17 am
Matt, "@@Scope_Identity" is not valid, try:
SELECT scope_identity()
instead. Like @@IDENTITY, it returns NULL on a new connection (or at least it does for me).
October 27, 2006 at 11:41 am
OK, now I'm a bit confused...are you still just trying to execute a package you created (executing it from your code)? Sounds like you're trying to create the package from scratch...
August 18, 2006 at 7:29 am
Is there any reason you need all those extra objects? Are you simply trying to export the data from the one column to a text file? To do that, all...
August 17, 2006 at 7:28 am
Had this happen too. It's apparently a bug in DTS. You have to remove all the variables and then re-add them with their values.
For example, create a NameValue collection that has...
August 14, 2006 at 6:51 am
That is most certainly possible, I've got some apps that do this very thing. You can find a lot of resources on how to do it, here's a couple (Google for...
August 11, 2006 at 11:01 am
Not exactly sure what you are asking. Are you asking how to create a DTS package using .NET? If so, I wouldn't do that, would be better to create the...
August 11, 2006 at 8:49 am
Hmmm. Looks like you've got a bug in your code...
Set fso = CreateObject("Scripting.FileSystemObject")
Set fold = fso.GetFolder(folderPath)
serverPath = "http://pe-ocr.apa.org/fulltext/psq_html_conversion/?"
folderPath = "conversionPath=psq\Journals_proofing\SGML_to_be_converted\"
Should probably be...
Set fso = CreateObject("Scripting.FileSystemObject")
serverPath = "http://pe-ocr.apa.org/fulltext/psq_html_conversion/?"
folderPath...
April 12, 2006 at 7:11 am
The way I understand it, connection pooling is more about performance than reducing the number of connections needed. Making a brand-new connection to the server is expensive/time consuming (relatively), connection...
March 27, 2006 at 7:03 am
OK, so is it the service that executes/needs to execute the command?
If so, then if your service uses a domain account and that domain account uses a "trusted" connection to the...
March 24, 2006 at 11:48 am
Take a look at this:
Describes how tom impersonate another account, programmatically.
March 24, 2006 at 7:28 am
Have you profiled the application? You said it's ADO.NET, are you certain that it's the execution of the query that's the problem or is it something else? For example, is...
February 23, 2006 at 7:05 am
Viewing 15 posts - 196 through 210 (of 247 total)