Tuesday, July 05, 2011
Sunday, July 03, 2011
Cognos Framework Manager
Tutorial on Cognos Framework Manager
I am new to Cognos 10. The last time I used Cognos was more than 10 years ago. I found the following videos tutorials on Cognos Framework Manager and they were very helpfull. Many thanks to the video owners for sharing.
I am new to Cognos 10. The last time I used Cognos was more than 10 years ago. I found the following videos tutorials on Cognos Framework Manager and they were very helpfull. Many thanks to the video owners for sharing.
This video tutorial convers the following topics:
- Create data sources
- Create project in Framword Manager
- Create data modle - DMR
- Create Calculaticve fields
- Create packages
The following 5 videoes are tutorials on Cognos Frameword Manager.
1. This video tutorial covers the following topics:
- Creat data sources
- Creat data models
2. This video tutorial covers the following topics:
- Creat Projects
- Creat data sources
- Import data structure (meta data)
- Creat Cognos objects
- Also covers base concepts of dimension and facts
3.This video tutorial covers the following topics.
- Object Type
- - Namespace
- - Query Object
- Also covers base concepts of dimension and facts
4.This video tutorial covers the following topics.
- Relational data model (DMR)
- Measures
- Also covers base concepts of dimension and facts
5.This video tutorial covers the following topics.
- Drill down
- Define hierarchivies
6.This video tutorial covers the following topics.
- How Cognos stores data
- Cognos object type
- Create namespace
- XML for Cognos model
- .cpf file
Wednesday, June 29, 2011
GET FIRST AND LAST DAY OF A MONTH IN BASH SHELL
GET FIRST AND LAST DAY OF A MONTH IN BASH SHELL
Linux system comes with a date commend. The man page has all the details. The following shows how to get the first date and last day of a month using the date commends in bash shell.
First Day, current month:
# date -d "-0 month -$(($(date +%d)-1)) days"
First Day, last month:
# date -d "-1 month -$(($(date +%d)-1)) days"
Last Day, current month:
# date -d "-$(date +%d) days +1 month"
Last Day, last month:
# date -d "-$(date +%d) days -0 month"
Last Day, month before last month:
# date -d "-$(date +%d) days -1 month"
%d = day of month.
First Day, current month:
# date -d "-0 month -$(($(date +%d)-1)) days"
First Day, last month:
# date -d "-1 month -$(($(date +%d)-1)) days"
Last Day, current month:
# date -d "-$(date +%d) days +1 month"
Last Day, last month:
# date -d "-$(date +%d) days -0 month"
Last Day, month before last month:
# date -d "-$(date +%d) days -1 month"
%d = day of month.
Subscribe to:
Comments (Atom)