Viewing 15 posts - 1,846 through 1,860 (of 2,897 total)
SQAPro (7/9/2009)
homebrew01 (7/9/2009)
Michael Valentine Jones (7/8/2009)
Was it really necessary to post this question 6 times?
Seems like yesterday's issues with the site are continuing today. Look at all the other multiple...
July 11, 2009 at 8:10 am
Won't the the automatic startup have a problem because the trace file name specified will already exist from before the shutdown ? TraceFile.trc TraceFile_1.trc etc So...
July 9, 2009 at 2:46 pm
What format is the Oracle data ? Is it just 1 table in a flat file ? If so, maybe you could import it the same way you'd...
July 9, 2009 at 2:38 pm
sturner (7/9/2009)
there is no "updated" table that I'm aware of. All you have for triggers is inserted and deleted tables.
Right, so you need to compare the values of inserted and...
July 9, 2009 at 2:26 pm
Lynn Pettis (7/9/2009)
July 9, 2009 at 11:03 am
You can also purchase a 3rd party tool such as Idera's Compliance Manager. It will give you everything you want, and can be configured to send you email alerts when...
July 9, 2009 at 10:54 am
Michael Valentine Jones (7/8/2009)
Was it really necessary to post this question 6 times?
Seems like yesterday's issues with the site are continuing today. Look at all the other multiple posts:w00t:
Mods need...
July 9, 2009 at 6:24 am
If you want to run procedure from scripts, rather than the GUI, you can use the GUI to get everything set, then choose "Script to Query Window". That will build...
July 8, 2009 at 1:48 pm
Jeff Moden (7/4/2009)
dineshbornleo (7/4/2009)
Hi Guru'sIs there any chance to move the particular rows from one table to other...?if yes..how do we do that..?
Thanx in advance..
A better question would be, why...
July 6, 2009 at 9:10 am
Why do you want to restore Dev onto Production ? What will happen to all your production data ?
July 1, 2009 at 11:04 am
Roy Ernest (6/30/2009)
Lynn Pettis (6/30/2009)
Mind decoding your dates??
I think it is the number of days since 01/01/1930.
"This system uses "date" field that are calculated as # of days since...
June 30, 2009 at 1:13 pm
Lynn Pettis (6/30/2009)
Mind decoding your dates??
Sorry ... edited above.
June 30, 2009 at 1:08 pm
Here's a sanitized version, with unrelated fields removed:
CREATE TABLE employee(
emp_id int NOT NULL,
first_name varchar(15) NULL,
middle_name varchar(15) NULL,
last_name varchar(20) NULL,
company_sys_id int NULL,
dept_id int NULL,
eff_start_date int NOT NULL,
eff_stop_date int NOT NULL
.
.
.
emp_id ...
June 30, 2009 at 12:56 pm
Lynn Pettis (6/30/2009)
June 30, 2009 at 12:29 pm
Roy Ernest (6/30/2009)
Cant you do aSelect a.* from employee as a
JOIN
(Select distinct empNum, fName,LName from Employee) as b
on a.empNum = b.empNum
where date = '30-Jun-2009'
??
Thanks ! Assuming you meant: Select...
June 30, 2009 at 12:13 pm
Viewing 15 posts - 1,846 through 1,860 (of 2,897 total)