The below script will generate owner rename statements in SQLServer. I use them all the time for data refreshes. Just do database backup, restore and then run these puppies for DTA and CTL!
select 'EXEC sp_changeobjectowner ' + '''' + 'JDE_CRP.PRODDTA.' + so.name +
'''' + ', ' + '''' + 'CRPDTA' + '''' + ';'
from sysobjects so, sysusers su
where so.name like 'F%'
and so.xtype = 'U'
and su.uid = so.uid
and su.name = 'PRODDTA'
Get your oracle version from the SQL command like:
select banner from v$version
Installing peoplebooks?
PSOL documentation code FFFFFFFFF1
start ftp on linux
service vsftpd start
service smb start
/etc/samba/smb.conf
find and delete all files that are older than 6 days
find . -mtime +6 -print | xargs -i rm -f {}
I love blogging about new technology appropriate for the enterprise. I want to change the face of innovation to embrace change, agility and promote an innovation culture.
Showing posts with label PSOL documentation code oracle version. Show all posts
Showing posts with label PSOL documentation code oracle version. Show all posts
Subscribe to:
Posts (Atom)
-
I’ve enabled auditing many times before. Everytime has been a nightmare. You need lots of space for big tables, this could be done MUCH bet...
-
I’m running windows 7 virtual on OVM with office 2010. Have E1 fat boy and oracle 11G client. I’m using this machine for some BIP prototyp...
-
There are a heap of instructions of what you need to change if you change the IP address of your weblogic server, but I find they are not co...