June 26, 2017 at 2:39 am
How can get sequence Log (Object log) history, date ,minimum and max values for a day wise in Oracle Or SQL.
June 26, 2017 at 3:11 am
Could you explain more what you're looking for?
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
June 26, 2017 at 3:27 am
I want to output Like
example: sequence Name, sequence min value, max value, last mumber, input_date
June 26, 2017 at 3:40 am
Start with sys.sequences, which exposes most of the information you're looking for.
John
June 26, 2017 at 3:51 am
sys.sequences can not date column, acually i required day wise.
June 26, 2017 at 4:09 am
sys.sequences have not date column, acually we required day wise.
June 26, 2017 at 4:29 am
kailashsingh85 - Monday, June 26, 2017 4:09 AMsys.sequences have not date column, acually we required day wise.
sys.sequences has both create_date and modify_date as it inherits all columns from sys.objects
😎
June 26, 2017 at 5:11 am
Eirikur Eiriksson - Monday, June 26, 2017 4:29 AMkailashsingh85 - Monday, June 26, 2017 4:09 AMsys.sequences have not date column, acually we required day wise.sys.sequences has both create_date and modify_date as it inherits all columns from sys.objects
😎
Yes this contains create_date and modify_date but not stored history of sequences , show last modify_date
June 26, 2017 at 5:15 am
kailashsingh85 - Monday, June 26, 2017 5:11 AMEirikur Eiriksson - Monday, June 26, 2017 4:29 AMkailashsingh85 - Monday, June 26, 2017 4:09 AMsys.sequences have not date column, acually we required day wise.sys.sequences has both create_date and modify_date as it inherits all columns from sys.objects
😎Yes this contains create_date and modify_date but not stored history of sequences , show last modify_date
any options to get object Log history..
June 26, 2017 at 6:13 am
kailashsingh85 - Monday, June 26, 2017 5:15 AMkailashsingh85 - Monday, June 26, 2017 5:11 AMEirikur Eiriksson - Monday, June 26, 2017 4:29 AMkailashsingh85 - Monday, June 26, 2017 4:09 AMsys.sequences have not date column, acually we required day wise.sys.sequences has both create_date and modify_date as it inherits all columns from sys.objects
😎Yes this contains create_date and modify_date but not stored history of sequences , show last modify_date
any options to get object Log history..
SQL Server does not hold the history for objects, you'll have to implement this yourself.
😎
June 26, 2017 at 6:16 am
Eirikur Eiriksson - Monday, June 26, 2017 6:12 AMkailashsingh85 - Monday, June 26, 2017 5:15 AMkailashsingh85 - Monday, June 26, 2017 5:11 AMEirikur Eiriksson - Monday, June 26, 2017 4:29 AMkailashsingh85 - Monday, June 26, 2017 4:09 AMsys.sequences have not date column, acually we required day wise.sys.sequences has both create_date and modify_date as it inherits all columns from sys.objects
😎Yes this contains create_date and modify_date but not stored history of sequences , show last modify_date
any options to get object Log history..
SQL Server does not hold the history for objects, you'll have to implement this yourself.
😎
thanks any options in oracle
June 26, 2017 at 6:36 am
Thanks to all.......
Viewing 12 posts - 1 through 11 (of 11 total)
You must be logged in to reply to this topic. Login to reply