Tagged Questions
Pro*C is an embedded SQL programming language used by Oracle Database and Sybase SQL Server database management systems.
7
votes
4answers
5k views
Dropping a table in SAS
What is the most efficient way to drop a table in SAS?
I have a program that loops and drops a large number of tables, and would like to know if there is a performance difference between PROC SQL; ...
5
votes
6answers
1k views
Is it possible to do a case-insensitive DISTINCT with SAS (PROC SQL)?
Is there a way to get the case-insensitive distinct rows from this SAS SQL query? ...
SELECT DISTINCT country FROM companies;
The ideal solution would consist of a single query.
Results now look ...
4
votes
2answers
283 views
Linux proc/pid/fd for stdout is 11?
Executing a script with stdout redirected to a file. So /proc/$$/fd/1 should point to that file (since stdout fileno is 1). However, actual fd of the file is 11. Please, explain, why.
Here is ...
4
votes
1answer
136 views
How to develop a third-party SAS PROC?
Is it possible, as a third party, to develop a SAS PROC? I'm thinking of something like a matlab toolbox or an R package.
I've looked everywhere for info on how to do this, and the lack of ...
3
votes
5answers
228 views
How does SAS macro quoting interact with format literals?
Executing locally in a clean session:
%let x = %str(put(age, best.));
proc sql;
select &x from sashelp.class;
quit;
This generates the following error:
1 put(age, best.)
...
3
votes
2answers
1k views
SAS to Oracle ODBC - passing a SAS table INTO the database
Can anyone please advise the syntax for passing a table FROM a SAS library INTO an oracle database?
example code below (although obviously the connection to the WORK library cannot be referenced in ...
2
votes
2answers
201 views
Pro*C passing array of parameters
I am trying to write Pro*C/C/C++ code to handle a query like this:
SELECT col1, col2, col3, col4 FROM table WHERE param IN(<set of values>);
I can have a C struct to retrieve the result and ...
2
votes
1answer
149 views
SAS proc import missing leading zero
I am trying to import numbers from csv file to sas dataset with proc import ( SAS ) , but all my leading zero are disappear after the import.
For example,
'0123456' after import I would get only ...
2
votes
1answer
65 views
Oracle beq and popen()
Good day!
I have a program like this (that's for Pro*C precompiler):
#include <stdio.h>
#include <stdlib.h>
#include <sys/wait.h>
#include <errno.h>
EXEC SQL BEGIN DECLARE ...
2
votes
2answers
169 views
Minute interval in mysql / sas or proc sql
Does any one know proc sql or data step have a function where I can convert datetime value into : 15 mins interval for example :
03NOV2010:00:00:02 --> 0-15
03NOV2010:00:16:02 --> 15-30
2
votes
2answers
408 views
Best way to use PL/SQL Pacakge Cursors from Pro*C
I have a cursor defined in PL/SQL, and I am wondering what the best way to use it from Pro*C is. Normally for a cursor defined in Pro*C you would do:
EXEC SQL DECLARE curs CURSOR FOR SELECT 1 FROM ...
2
votes
1answer
274 views
Compile time Error in ProC (Embedded sql in C)
Please tell me whats wrong with the query. I am using Pro C.
EXEC SQL SELECT 1
INTO :db_count
FROM sachin t
WHERE t.serialno = :serial_no
AND ...
2
votes
7answers
3k views
How to make Pro*C cope with #warning directives?
When I try to precompile a *.pc file that contains a #warning directive I recieve the following error:
PCC-S-02014, Encountered the symbol "warning" when expecting one of the following: (bla bla ...
1
vote
3answers
105 views
Pro*C performance differences
I am running in the following scenario which gives me quite a bit of headaches as I can't find an exact explanation for the behavior I am seeing. I have the following declared:
struct test_struct
{
...
1
vote
0answers
37 views
Get OCCI Connection from Pro*C connection?
We maintain an extensive collection of components written in C++ that run under Linux, Solaris, AIX and HP/UX that connect to an Oracle database using Pro*C. I am about to write a component that ...
1
vote
1answer
69 views
Connecting to different database versions
I maintain a set of applications that use Pro*C to connect to Oracle 10g databases. These applications are generally involved with moving data from one database to another. In each case a connection ...
1
vote
1answer
29 views
How to recognize .pc extension
How to set so that all .pc file will be open with visual studio? and it also recognize it as C/C++ code as well. i did the setting in registry before. unfortunately,i deleted the files and totally ...
1
vote
1answer
41 views
Is Pro*C/C++ communication secured?
I need to know if Pro*C/C++ (Oracle database connectivity for C/C++) communication is secured. Is it TCP/IP with plaintext? maybe some encryption (shared key?). Secured Tunnel of some sort?
1
vote
1answer
106 views
SAS proc contents error
I am trying to list content of sas library Sasuser with standard sas 9 setup. From explorer, the library contains Table and catalogs. I am wondering what went wrong. Plus I am able to run proc ...
1
vote
2answers
326 views
1
vote
1answer
294 views
Segmentation fault in sqlcxt()
I am using the below function in my C code for connecting to the oracle database. The below function is causing segmentation fault sometime while work at the other time
static int Connect(char ...
1
vote
1answer
234 views
Why don't runtime contexts work on 11g in a program compiled for 10g?
I've got a multi-threaded C application that was compiled using Oracle 10g (pro*c and libraries.) The program uses one database connection per thread. We're moving to 11g and in testing against 11g, ...
1
vote
2answers
104 views
How to kill long running queries through Pro *C?
We are interacting with DB though Pro *c... Now we want to find out the queries which are taking the long time thorugh Pro *C... Please let us know their is any way to find out long running queries in ...
1
vote
1answer
261 views
What is the use of sqlcxt() pro c function?
I am very new to pro c and I don't have any practical experience on developing pro c program. While debugging a program I encountered a function call
sqlcxt((void **)0, &sqlctx, &sqlstm, ...
1
vote
1answer
186 views
Force all coefficients to be negative in PROC REG
I'm wondering if there's a way to force all non-intercept coefficients to be positive/negative in proc reg. If I use:
model depvar=indvar;
RESTRICT indvar<0;
Then I always get a syntax error. ...
1
vote
1answer
693 views
Updating an Oracle table with data from a SAS data set using SAS code
I am rather new to SAS and I have run into a problem that I think probably has a better solution than what I've found so far.
I need to update a Oracle db table that has around 1 million rows with ...
1
vote
2answers
183 views
How to Direct Output from a SAS Procedure to the Log or Output Window?
How do I send output from a SAS Procedure to the Output or Log window?
1
vote
1answer
399 views
How do I start learning Pro*c (embedded sql with C)?
I am basically working on unix and c programming.
I want to start learning Pro*c on unix.
Are there any good online tutorial which will help me start writing simple programs in pro*c and compiling ...
1
vote
1answer
152 views
sqlstm.sqpadto = sqlstm.sqadto causing segmentation fault
When and how sqlstm.sqpadto = sqlstm.sqadto can cause segmentation fault? I am getting segmentation fault and getting this line in the core file. I am using proC
1
vote
2answers
1k views
sqlcxt() causes segmentation fault
Lets state the conditions where sqlcxt() can cause segmentation fault, I am woking on unix, using ProC for database connections to Oracle database.
My program crashes and the core file shows that the ...
1
vote
2answers
5k views
SAS Proc SQL Database Table Insert
Using SAS's Proc SQL, is there a way to insert records from a SAS Dataset into a table in the open SQL Server connection? Something like this (which doesn't work):
proc sql exec;
connect to ...
1
vote
3answers
330 views
Help with Correlated Queries in SQL
Please help!! I am brand new to SQL programming and am teaching myself everything as I go along. I’ve finally run into a problem I can’t seem to tackle. Hopefully someone can help. I have the ...
1
vote
2answers
842 views
Teradata and SAS with BigInt's
We have a teradata database that is filled with BIGINT datatypes. SAS is the primary analytic engine for the organization. The SAS access library chokes on BIGINT and therefore forces all code to cast ...
1
vote
3answers
885 views
Informix to Oracle: Dealing with Fetching Null Values
A bit of background first. My company is evaluating whether or not we will migrate our Informix database to Oracle 10g. We have several ESQL/C programs. I've run some through the Oracle Migration ...
1
vote
5answers
3k views
1
vote
1answer
146 views
How to keep implementation/maintenance costs low in Pro*C?
Having experienced the horror that is Oracle Pro*C, when dealing with dynamically specified columns, and the need for bulk operations (ANSI METHOD 4), I simply must ask:
What Ideas/Techniques can you ...
1
vote
2answers
4k views
ORACLE 10.2 Pro*C precompiler not reading header file
I'm pre-compiling a C program containing Pro*C code with ORACLE 10.2 and AIX 5.2
The ORACLE precompiler reads the $ORACLE_HOME/precomp/admin/pcscfg.cfg file which contains the definition of the ...
1
vote
1answer
784 views
How to debug .pc files?
I am using emacs + gdb to debug a bunch of .c files in unix -- and it always worked well. But some of the projects I work in also have a bunch of .pc (Pro*C/C++) files. These files generate .c and .i ...
1
vote
4answers
312 views
Will Pro*C work with MSVC 6?
How do you get Pro*c to work within MSVC 6?
In otherwords compile a .pc file into a .cpp file.
0
votes
2answers
72 views
Rebuild precompiled header
I am trying to use MFC with ProC.
Functions.pc is where I do the ProC syntax to connect to the database. So I include the 'Functions.h' in the dialog model where I want to call the functions in ...
0
votes
2answers
45 views
Is pro*c/c++ support “describe [schema.]object” statement?
I can't prepare this statement in my pc code. When I running this statement always show out
"SQLERROR: ORA CODE: -900 MSG: ORA-00900: invalid SQL statement".
Can there are any way to exec this ...
0
votes
1answer
59 views
Oracle Pro*C precompiler errors on EXEC SQL statements in included files
I'm converting some legacy code to Oracle Pro*C. I'm on a Linux box using Oracle 11.2. We are using ".cp" as the suffix for Pro*C source files. I'm not much of a C developer so I am sort of banging ...
0
votes
0answers
79 views
How to get oracle query status in Pro*C?
My code runs oracle select query on a server. The server may be free or it may be busy at certain times.Now what i am making is a timeout mechanism in Pro*C that times out after 10 seconds and cancels ...
0
votes
2answers
144 views
proc rank in sas
my data set has two variables ID and diagnosis. I am trying to assign row numbers in my dataset based on ID and diagnosis.
the code that I used was;
proc sort data = temp;
by ID diagnosis;
run;
...
0
votes
2answers
36 views
Issue in reading the value and storing in host variable?
My program reads records from file and for each record in file it fetches value from DB.i have declared a host variable in my pro*C program. I used that host variable in one of my select query inside ...
0
votes
2answers
214 views
proc transpose with duplicate ID values
I need help with proc transpose procedure in SAS. My code initially was:
proc transpose data=temp out=temp1;
by patid;
var text;
Id datanumber;
run;
This gave me error "The ID value " " occurs ...
0
votes
0answers
80 views
Header file redundant
Im using visual studio 2008 to compile a ProC codes.but i got this error when trying to run this project.
error LNK2005: "struct oraca oraca" (?oraca@@3U0@A) already defined in Funtions.obj
the ...
0
votes
1answer
142 views
Oracle 9 ProC precompiler segfault while reading pcsus.msb
I'm trying to compile an old piece of software which includes the use of the ProC pre-compiler for Oracle.
This software runs using Oracle 9 under Solaris 10, and uses the proc tool to convert .proc ...
0
votes
0answers
51 views
Embeded OCI distributed transaction in Pro*C
All
I need to script a distributed transaction route of Pro*c. So, I opt MTS, but I really don't know how to control a distributed transaction in Pro*c.
After surf in google, I choose OCI, and ...
0
votes
0answers
206 views
EXEC SQL DECLARE variable in .h header files preprocessed by Oracle pro*c
I am porting some C++ code with embedded SQL into a linux server with oracle database.
The data Access Objects are C++ classes providing
.select()
.insert()
.findByPrimaryKey()
etc, methods for ...