A Analizer1 Oct 28, 2007 #1 does anybody know how to execute a stored proc from a different database tks Analizer1
S sloan Oct 28, 2007 #2 http://www.google.com/search?hl=en&q="ExecuteNonQuery" ExecuteNonQuery is the one to run that does not return resultset(s) or scalar values.
http://www.google.com/search?hl=en&q="ExecuteNonQuery" ExecuteNonQuery is the one to run that does not return resultset(s) or scalar values.
? =?ISO-8859-1?Q?Arne_Vajh=F8j?= Oct 28, 2007 #3 Analizer1 said: does anybody know how to execute a stored proc from a different database Click to expand... yourcmd.CommandText = "theotherdatabase.theuserordbo.nameofsp"; yourcmd.CommandType = CommandType.StoredProcedure; Arne
Analizer1 said: does anybody know how to execute a stored proc from a different database Click to expand... yourcmd.CommandText = "theotherdatabase.theuserordbo.nameofsp"; yourcmd.CommandType = CommandType.StoredProcedure; Arne