Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by JCS2008

  1. JCS2008

    "Object reference not set to an instance of an object"

    If you have a report with input parameter defined the problem may be that you are passing a different type than what the report expected For instance a String with the parameter defined as and int
  2. JCS2008

    CASE in a where clause for Stored proc

    WHERE dateYY Between @StartYr And @EndYr and ACC_No Between '25000000' And '28000000' And Job_Desc = isnull(@Allowance,Job_Desc) if the Job_Desc is null the it will be like this: Job_Desc = Job_Desc wich is always true so in fact it will remove the restriction :D I used the built...
  3. JCS2008

    TSQL Error

    One other possibility for what appened is: If the colum value deduct_rule_id of the table py_deduct_rule does not have the same Type of the column deduct_rule_id of the table py_deduct_rule... We can oly match columns of the same type bigint with bigint and so on One alternative is to go to...

Part and Inventory Search

Back
Top