I've written an executable in VB6 to export a CR 8.5 report to PDF. It works fine on my machine where the VB6 project lies. However, when I try to run the executable on another machine it throws the following error:
-214719854(800473d2): The remaining text does not appear to be part of the...
Two part question:
1) I have a main computer running XP and IIS. I have a bunch of sites downloaded to it. One ASP page is trying to add tasks to the windows task scheduler. If I run the page over the web from the actual server machine, it will add the task to the scheduler. However, from a...
I have two test IIS servers. I'm running the exact same asp file on both.
Test.asp code:
---------------------------------------------------------
<HTML>
<HEAD>
<TITLE></TITLE>
</HEAD>
<BODY>
<%
Dim wShell
Set wShell = CreateObject("WScript.Shell")
wShell.run "cmd.exe /c C:\test.vbs"
Set...
I'm writing a simple stored function:
CREATE OR REPLACE FUNCTION GET_GMTOFFSET
RETURN number
AS
DBoffset number(10);
UserOffset number(10);
BEGIN
DBOffset:=0;
UserOffset:=0;
select "VALUE" into DBOffset from "_SMSYSADMIN_"."SMSYSFLAGS"
where "NAME"...
I've created a DLL with user defined functions that I need. The record selection formula as well multiple fields in my report use two of these functions. The report runs ridculously slow (10+ min on a DB of 75000 records). Now I've read that if you use a function in the record selection...
Can someone tell me why I get an error (ORA-00911: invalid character) for the following statement:
strQuery = "SELECT A.SEQ_GMT FROM _SMDBA_._PERSONNEL_ A
WHERE A.CODE = " & user
Set rs1 = conn1.Execute(strQuery)
I believe it's because of the period in the table name. Does anyone...
I'm trying to avoid using a stored procedure, but I'm attempting the following SQL query in CR 8.5:
SELECT
A.X
FROM
A, B
WHERE
A.Y = B.Y (+) AND
B.Z=user
However, everytime I enter this into Database-->Show SQL Query, it changes it and returns:
SELECT
A.X
FROM
A
WHERE...
Hi all!
I'm using a very large Oracle DB, and want to create a report using multiple tables from this DB. However, whenever I try to create an SQL expression using SELECT, FROM, WHERE, etc. it gives me the following error:
"ODBC error: [MERANT][ODBC Oracle 8 Driver][Oracle 8]ORA-00911...
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.