Skip to main content

Reasons Not to Mess with Children


A little girl was talking to her teacher about whales. 
The teacher said it was physically impossible for a whale to swallow 

a human because even though it was a very large mammal its 
throat was very small.

The little girl stated that Jonah was swallowed by a whale.

Irritated, the teacher reiterated that a whale could not swallow 

a human; it was physically impossible. 

The little girl said, 'When I get to heaven I will ask Jonah.'

The teacher asked, 'What if Jonah went to hell?'

The little girl replied, 'Then you ask him.'



  
A Kindergarten teacher was observing her classroom of children 
while they were drawing. She would occasionally walk around 
to see each child's work.

As she got to one little girl who was working diligently, 

she asked what the drawing was.

The girl replied, 'I'm drawing God.'
 

The teacher paused and said, 

'But no one knows what God looks like.'

Without missing a beat, or looking up from her drawing, 

the girl replied, 'They will in a minute.' 


A Sunday school teacher was discussing the 
Ten Commandments with her five and six year olds.

After explaining the commandment to 'honour' thy Father and 

thy Mother, she asked, 'Is there a commandment that 
teaches us how to treat our brothers and sisters?'

Without missing a beat one little boy, 

the oldest of a family, answered, 
'Thou shall not kill.'
  

One day a little girl was sitting and watching her mother do 
the dishes at the kitchen sink. She suddenly noticed that 
her mother had several strands of white hair sticking out 
in contrast on her brunette head.

She looked at her mother and inquisitively asked, 

'Why are some of your hairs white, Mum?'

Her mother replied, 'Well, every time that you do something wrong 

and make me cry or unhappy, one of my hairs turns white.'

The little girl thought about this revelation for a while and then said, 'Mummy, how come ALL of grandma's hairs are white?'
 
   

The children had all been photographed, and the teacher was 
trying to persuade them each to buy a copy of the group picture.

'Just think how nice it will be to look at it when you are all 

grown up and say, 'There's Jennifer, she's a lawyer,' or 
'That's Michael, he's a doctor.'

A small voice at the back of the room rang out, 'And there's the teacher, she's dead.'
 
  

A teacher was giving a lesson on the circulation of the blood. 
Trying to make the matter clearer, she said, 'Now, class, if I 
stood on my head, the blood, as you know, would run into it, 
and I would turn red in the face.' 
'Yes,' the class said. 

'Then why is it that while I am standing upright in the ordinary position the blood doesn't run into my feet?'

A little fellow shouted,
 
'Cause your feet ain't empty.'
 

  
The children were lined up in the cafeteria of a Catholic 
elementary school for lunch. At the head of the table was a 
large pile of apples. The nun made a note, 
and posted on the apple tray:

'Take only ONE. God is watching.'
 

Moving further along the lunch line, at the other end of 

the table was a large pile of chocolate chip cookies.

A child had written a note, 

'Take all you want. God is watching the apples.' 

Comments

Popular posts from this blog

Insufficient access rights to perform the operation. (Exception from HRESULT: 0x80072098)

While accessing the active directory (AD) and authorization manager (AZMAN) , If you get “   Insufficient access rights to perform the operation. (Exception from HRESULT: 0x80072098)  “ message check the    account that is being used to get the LDAP query from AD .  ERROR DETAILS Exception Details:  System.Runtime.InteropServices.COMException: Insufficient access rights to perform the operation. (Exception from HRESULT: 0x80072098) Source Error: Line 154:    'Session("FullName") = System.Security.Principal.WindowsIdentity.GetCurrent.Name.ToString() Line 155: Line 156:    If Not User.IsInRole("Role1") Then Line 157:          Response.Redirect("./Login.aspx") Line 158:    End If  Stack Trace : .... SOLVE IT Steps to do check the app pool rights: Click on the website name that you are having problem with in IIS  In the right panel you will see 'Basic Settings'. Click It. Select the specific pool option and enter the name of the ac

Sql Server database Read_Only / Read_Write

The ALTER DATABASE command allows a database administrator to modify SQL Server databases and their files and filegroups. This includes permitting the changing of database configuration options. Why Read Only ? When you need to ensure that the data is a database is not modified by any users or automated processes, it is useful to set the database into a read-only mode. Once read-only, the data can be read normally but any attempts to create, updated or delete table rows is disallowed. This makes the read-only mode ideal when preparing for data migration, performing data integrity checking or when the data is only required for historical reporting purposes. Make Database Read Only USE  [master] GO ALTER DATABASE  [TESTDB]  SET  READ_ONLY  WITH  NO_WAIT GO Make Database Read/Write USE  [master] GO ALTER DATABASE  [TESTDB]  SET  READ_WRITE  WITH  NO_WAIT GO In case you get the following error message make the database single user: Msg 5070, Level 16, Stat

Do's and Don't SQL

Do's: Writing comments whenever something is not very obvious, as it won’t impact the performance.  (--) for single line  (/*…*/) to mark a section Use proper indentation Use Upper Case for all SQL keywords. SELECT, UPDATE, INSERT, WHERE, INNER JOIN, AND, OR, LIKE. Use BEGIN... END block for multiple statements in conditional code  Use Declare and Set in beginning of Stored procedure Create objects in same database where its relevant table exists otherwise it will reduce network performance. Use PRIMARY key in WHERE condition of UPDATE or DELETE statements as this will avoid error possibilities. If User table references Employee table than the column name used in reference should be UserID where User is table name and ID primary column of User table and UserID is reference column of Employee table. Use select column name instead of select * Use CTE (Common Table Expression); its scope is limited to the next statement in SQL query, instead of temporary tables and der