Hi,
I am having 3 columns in my #Temptable. The Columns in Temp table are ID INT,LINE_NO INT,TOT_LINES INT.
In sql server 2000, I wrote a insert like
"insert #Temptable
select id,no from t_line" It doesn't show any exception.
But Now I migrate procedure to Sql2005 It shows an exception like"Number of Supllied values mismatch". After I tested with query it's showing error in both Sql server 2000 & 2005.
Could any one explain why it doesn't shows any exception in Sqlserver2000 with a proc.
Thanks...