473,626 Members | 3,431 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

SET CURRENT SCHEMA in a Trigger or Procedure

Hi,

In a trigger I need to do a SET CURRENT SCHEMA so that I update the
right set
of tables based on some "new" values I recieve in the trigger..

the logic looks a little like:

DECLARE lschema varchar(20);
set lschema=(select company from shared.logos where
segment=new.fie ld3);
SET CURRENT SCHEMA =lschema;
....
....
update styles set blah blah

Problem is I do this in a trigger..When I place the command in a
trigger I get:
SQL0104N An unexpected token "SCHEMA"
I also tried it in a function and I get the same variable?

Is there any way to dynamicly set the current schema like I want to
do..
CREATE FUNCTION SHARED.GETSCHEM A
(P_SEGMENT VARCHAR(200))
RETURNS VARCHAR(200)
BEGIN ATOMIC
DECLARE lSchema VARCHAR(200);
SET lSchema = (select company from shared.logos where
segment=P_SEGME NT FETCH FIRST ROW ONLY);
SET CURRENT SCHEMA = 'D123';
RETURN lSchema;
END;
[IBM][CLI Driver][DB2/NT] SQL0104N An unexpected token "SCHEMA" was
found following "W ONLY); SET CURRENT". Expected tokens may include:
"<space>". LINE NUMBER=1. SQLSTATE=42601
Any ideas?

BR
Tim
Nov 12 '05 #1
1 8892
Tim,

Special registers only affect dynamic SQL.
Since inline SQL PL does not support EXECUTE IMMEDIATE the whole point
of setting sich a register is moote.
In your example with teh function you would also be bitten by the fact
that special registers are scoped and never inherit up. Only down.

Anyway: What are you trying to do?
As long as you do not need to do writes you could put the dynamic logic
including the "set schema" into an external UDF (written in C or Java).
In Stinger you will be able to use CALL for that which will allow you to
stay within SQL PL.

Cheers
Serge
Nov 12 '05 #2

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

Similar topics

3
7885
by: Gard T?nnesland | last post by:
Hi everyone, How can I retrieve the current identity used in a procedure from a trigger. What I am trying to do is: The procedure takes a @username (nvarchar) as a parameter, and the procedure identifies the @username's identity and tries to delete the identity's row. An Instead Of trigger fires, and updates the specific row.
6
18721
by: Michael Spiegel | last post by:
Hi, I have a stored procedure that needs to know the name of the table from which it is called. If you are familiar with a "this" pointer in Java or C++, that's very similar to what I need. I know I can use db_name() to retrieve the database name, but how do retrieve the table name? Thanks, --Michael
2
4465
by: deebeetwo | last post by:
On AS/400, is there a way to determine the current library from SQL? (i.e., CURLIB)
2
3320
by: Net Virtual Mailing Lists | last post by:
Hello, If I have a rule like this: CREATE OR REPLACE RULE sometable_update AS ON UPDATE TO table2 DO UPDATE cache SET updated_dt=NULL WHERE tablename='sometable'; CREATE OR REPLACE RULE sometable_insert AS ON INSERT TO table2 DO UPDATE cache SET updated_dt=NULL WHERE tablename='sometable'; CREATE OR REPLACE RULE sometable_delete AS ON DELETE TO table2 DO UPDATE
16
4294
by: Bob Stearns | last post by:
The syntax diagram of DROP SCHEMA requires RESTRICT. Is there an easy way to drop an old, unnecessary, but populated schema?
16
5476
by: Brian Tkatch | last post by:
I have a PROCEDURE that test other PROCEDUREs. Timings_Call ------------------ Id Group Name Text Timings_Log
5
5345
by: wpellett | last post by:
I can not get the SQL compiler to rewrite my SQL UPDATE statement to include columns being SET in a Stored Procedure being called from a BEFORE UPDATE trigger. Example: create table schema1.emp ( fname varchar(15) not null, lname varchar(15) not null, dob date,
3
13079
by: %NAME% | last post by:
is there a way to write a script (not stored procedure) that looks for all the objects (triggers, events, materialized views, indexes, stats, tables) created by one user and remove them all? thanks a lot
9
9306
by: Ots | last post by:
I'm using SQL 2000, which is integrated with a VB.NET 2003 app. I have an Audit trigger that logs changes to tables. I want to apply this trigger to many different tables. It's the same trigger, with the exception of the table name. I could manually change the table name in the trigger and create it, over and over, but I'd like to automate this - by iterating through the collection of tables and passing the tablename to something that...
0
8196
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
8701
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...
0
8637
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8364
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
7192
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...
1
6122
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5571
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();...
1
2623
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
1
1807
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.