Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Using vb.net. dataset named as CIS.xsd. while adding procedure to this dataset show warning message from table adapter wizard like 'invalid object name #st1'.here i enclosed my sql procedure. but when i create the procedure in backend it didn't show any error

sql procedure
-------------
 go
CREATE PROCEDURE proc_CDR_Notready 
(@dtStartDateTime DATETIME,
 @dtEndDateTime DATETIME ,
 @notreadyskill NOTREADYSKILLID readonly )

 AS

  begin
  SELECT aed.SkillTargetID, aed.MRDomainID, aed.LoginDateTime, aed.Event, aed.Duration,  aed.ReasonCode, aed.DateTime, aed.DbDateTime, 'Suspect' = 0 
 INTO #ST1 FROM Agent_Event_Detail  AS aed  (nolock) 
 WHERE aed.DateTime >= @dtStartDateTime AND aed.DateTime <= @dtEndDateTime 
 AND SkillTargetID IN (select SkillTargetID  from @notreadyskill )
 ORDER BY aed.SkillTargetID, aed.MRDomainID, aed.LoginDateTime, aed.Event, aed.ReasonCode 

UPDATE #ST1 SET Suspect = 1 
FROM #ST1 AS a 
JOIN (SELECT SkillTargetID, MRDomainID, LoginDateTime FROM #ST1 
GROUP BY SkillTargetID, MRDomainID, LoginDateTime 
HAVING SUM(Event)%3>0) AS b 
ON (a.SkillTargetID = b.SkillTargetID AND a.MRDomainID = b.MRDomainID AND a.LoginDateTime = b.LoginDateTime) 

UPDATE #ST1 SET Suspect = 1 
FROM #ST1 AS a 
JOIN (SELECT SkillTargetID, MRDomainID, LoginDateTime FROM #ST1 
GROUP BY SkillTargetID, MRDomainID, LoginDateTime 
HAVING AVG(Event)=3) AS b 
ON (a.SkillTargetID = b.SkillTargetID AND a.MRDomainID = b.MRDomainID AND a.LoginDateTime = b.LoginDateTime) 
WHERE Suspect = 0 

SELECT SkillTargetID,MRDomainID, LoginDateTime, 'TotalLoginTime' = 0, 'TotalTimeNotReady' = 0, ReasonCode, 'ReasonCodeDuration' = SUM(Duration), Suspect 
INTO #ST2 
FROM #ST1 
WHERE Event = 3 
GROUP BY SkillTargetID, MRDomainID, LoginDateTime, ReasonCode, Suspect 

UPDATE #ST2 SET TotalLoginTime = b.Duration 
FROM #ST2 AS a 
JOIN #ST1 AS b 
ON (a.SkillTargetID = b.SkillTargetID AND a.MRDomainID = b.MRDomainID AND a.LoginDateTime = b.LoginDateTime) 
WHERE b.Event = 2 

 UPDATE #ST2 SET TotalTimeNotReady = b.TotalTimeNotReady 
 FROM #ST2 AS a 
 JOIN (SELECT SkillTargetID, MRDomainID, LoginDateTime, 'TotalTimeNotReady' =    SUM(ReasonCodeDuration) FROM #ST2 
    GROUP BY SkillTargetID, MRDomainID, LoginDateTime) AS b 
 ON (a.SkillTargetID = b.SkillTargetID AND a.MRDomainID = b.MRDomainID AND  a.LoginDateTime = b.LoginDateTime) 


 SELECT #ST2.SkillTargetID, #ST2.MRDomainID, Media_Routing_Domain.EnterpriseName,  LoginDateTime, TotalLoginTime, TotalTimeNotReady, #ST2.ReasonCode, textReasonCode=ISNULL(ReasonText, ' ')+'['+convert(varchar, #ST2.ReasonCode)+']', ReasonCodeDuration, Suspect, FullName=Person.LastName+', '+Person.FirstName, perNotReady = ReasonCodeDuration*1.0/TotalTimeNotReady, perLogon = ReasonCodeDuration*1.0/TotalLoginTime, StartDate = CONVERT(DATETIME, @dtStartDateTime), EndDate = CONVERT(DATETIME, @dtEndDateTime) 
FROM #ST2 LEFT JOIN Reason_Code ON #ST2.ReasonCode=Reason_Code.ReasonCode, Person,  Agent, Media_Routing_Domain 
WHERE #ST2.SkillTargetID = Agent.SkillTargetID AND Agent.PersonID = Person.PersonID AND   #ST2.MRDomainID=Media_Routing_Domain.MRDomainID 
ORDER BY FullName, Media_Routing_Domain.EnterpriseName, LoginDateTime, textReasonCode 

DROP TABLE #ST1 DROP TABLE #ST2
end
go



  create type NOTREADYSKILLID as table
  (
   SkilltargetID DBINT
   )  

in vb.net calling the sp as like the following

Dim dsnotreadyrpt As New CISCOTableAdapters.proc_CDR_NotreadyTableAdapter
 Dim dtnotreadyrpt As CISCO.proc_CDR_NotreadyDataTable = dsnotreadyrpt.GetData(frmdate, todate, testtable_skill)
share|improve this question
I don't know for sure, but I it looks the table adapter wizard is expecting all of the tables to already exist and since the temp tables do not until the procedure is run you are getting the error. Management Studio does not have such a check therefor it will run the stored procedure creation with out error. – Durus Dec 7 '12 at 18:59

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.