× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



For the SQL injection experts, yes, this could allow that, but this
doesn't accept user input. Everything is program generated.
--
Mike Wills
http://mikewills.me


On Thu, Sep 27, 2012 at 11:50 AM, Mike Wills <mike@xxxxxxxxxxxx> wrote:
Different user deletes. I have it working finally.

using (iDB2Connection conn = new iDB2Connection(_connString))
{
using (iDB2Command cmd = new iDB2Command("create table
....", conn))
{
try
{
conn.Open();
cmd.ExecuteNonQuery();
conn.Close();
}
catch (Exception e)
{
string errorText = "Error in
PullFromInternet.Model.CreateTransactionTable()\n\n\n";
errorText += "Error: " + e.ToString();
Log.Warning(errorText);
}
}
}

// Set the authority so the finance team can delete this
file after processing the data within.
using (iDB2Connection conn = new iDB2Connection(_connString))
{
string cmd = "GRTOBJAUT OBJ(" + objectName + ")
OBJTYPE(*FILE) USER(DIFFUSER) AUT(*ALL)";
conn.Open();
IbmICommand.RunCmd(cmd, conn);
conn.Close();
}

Note that this makes use of my IBM i .NET Interface on github
(https://github.com/MikeWills/IBM-i-.NET-Interface).

I need to clean up the code, but this works well.

--
Mike Wills
http://mikewills.me


On Thu, Sep 27, 2012 at 11:21 AM, Tom E Stieger <testieger@xxxxxxxxxxxx> wrote:
Drop table mylib.mytable;

Won't work?


-Tom Stieger
IT Manager
California Fine Wire



-----Original Message-----
From: midrange-l-bounces@xxxxxxxxxxxx [mailto:midrange-l-bounces@xxxxxxxxxxxx] On Behalf Of Mike Wills
Sent: Thursday, September 27, 2012 6:49 AM
To: Midrange Systems Technical Discussion
Subject: Re: Set authority on SQL CREATE TABLE

Well... this mostly worked. The only problem is they can't delete this temp file when it is done being processed. Guess I'll go back to the CL route.

--
Mike Wills
http://mikewills.me


On Wed, Sep 26, 2012 at 9:26 AM, Tom E Stieger <testieger@xxxxxxxxxxxx> wrote:
Try running the GRANT SQL command after the create statement.

Create table mylib.mytable as (balh, blah, blah);

Grant all on mylib.mytable to user;


-Tom Stieger
IT Manager
California Fine Wire



-----Original Message-----
From: midrange-l-bounces@xxxxxxxxxxxx
[mailto:midrange-l-bounces@xxxxxxxxxxxx] On Behalf Of Mike Wills
Sent: Wednesday, September 26, 2012 7:19 AM
To: midrange-l@xxxxxxxxxxxx
Subject: Set authority on SQL CREATE TABLE

I am having a problem where I have a program do an SQL CREATE TABLE and the authorization for *PUBLIC is *EXCLUDE. Now leaving out the security implications of setting that to *ALL, how can I either add a user with *ALL or change *PUBLIC to *ALL? A third option would be to use an authorization list.

No matter the approach, is this possible at the time of creation? Or do I have the run the CL command (which for the life of me I can't remember which) and change it that way? This is all ran through an automated process. I have tried to set CRTAUT on the library to *ALL and to my authorization list with no effect.

--
Mike Wills
http://mikewills.me
--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing
list To post a message email: MIDRANGE-L@xxxxxxxxxxxx To subscribe,
unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx Before posting, please take a moment to review the archives at http://archive.midrange.com/midrange-l.

--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing
list To post a message email: MIDRANGE-L@xxxxxxxxxxxx To subscribe,
unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx Before posting, please take
a moment to review the archives at
http://archive.midrange.com/midrange-l.

--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing list To post a message email: MIDRANGE-L@xxxxxxxxxxxx To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx Before posting, please take a moment to review the archives at http://archive.midrange.com/midrange-l.

--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing list
To post a message email: MIDRANGE-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/midrange-l.


As an Amazon Associate we earn from qualifying purchases.

This thread ...

Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.