Monday, July 27, 2009

Teeth Showing up...

Did I already mention that ??

Our young Krish has played both a Jerry (the mouse) and a Cheekoo (a bunny) by having two teeth showing up on both lower and upper teeth lines.

First he got his two lower central teeth. For about three months, he had them growing. We were enthralled by this. People used to comment that its very good for a baby to grow teeth at such early stage, it poses relatively lesser problems.

Well, starting 4th month (March-April) he's had the lower two. Now, starting July he started growing the upper central two.

Now that he's got parts of both the teeth visible, his wishes to chew and cut at any and everything in sight is starting to create problems of its own. The other day, while in lap, he cut his mom on the shoulder so hard that she screamed. :D

I've got my share of cuts, on shoulder and fingers and arms and where not...

More than this, his wish to chew everything is a problem. He tends to put everything in his mouth, whether its his plastic toys or my pen or wrist watch, or for that matter out mobile phones.. he needs everything in his mouth..

We're having hard time keeping an eye on him and watching everything that goes in his mouth..

Monday, July 20, 2009

Rota Virus Vaccine - 2

As I dreaded, the second vaccine of the Rota Virus came at the same price, another thousand rupees (1000).

So, the Rota Virus vaccine stands at Two Thousand Rupees, I guess a very high number for vaccine serving one virus. Not that I think its not worth it, I just think that it should be made available to the general public at a cheaper price tag.

Cheaper vaccines could be a very strong push for public to go for more vaccination coverage.

Wednesday, July 15, 2009

Starts crawling...

I was not home that day, but I wished I was.

He was on our double bed and was sleeping (I think). He woke up and suddenly she (his mom) saw him attempting crawls. At 6-7 months of age, the crawls should be expected behavior.

Whether expected or not, it was a pleasant surprise none the less... It was GREAT.. :)

After that day, we are thinking of getting him a walker.

Update: 10 August 2009
Got him a walker looking like this

Wednesday, July 1, 2009

Compile all packages in a schema

BEGIN
FOR cur IN
(
SELECT OBJECT_NAME,
OBJECT_TYPE ,
owner
FROM all_objects
WHERE object_type IN('PACKAGE', 'PACKAGE BODY')
AND owner = ':OWNER
AND status = 'INVALID'
)
LOOP
BEGIN
IF cur.OBJECT_TYPE = 'PACKAGE BODY' THEN
EXECUTE IMMEDIATE 'alter package "' || cur.owner || '"."' || cur.OBJECT_NAME ||
'" compile body';
ELSE
EXECUTE IMMEDIATE 'alter ' || cur.OBJECT_TYPE || ' "' || cur.owner || '"."' ||
cur.OBJECT_NAME || '" compile';
END IF;
EXCEPTION
WHEN OTHERS THEN
DBMS_OUTPUT.PUT_LINE('Errors compiling - ' || cur.owner ||'.'||cur.object_name);
END;
END LOOP;
END;