Tagged Questions

0
votes
2answers
18 views

SQL Server 2000 - View list of sprocs with GRANT EXECUTE for a particular role exclusively ?

There are approx 500 sprocs in my SQLSERVER 2000 database; each sproc has a typical Grant Execute statement similar to the following. GRANT EXECUTE ON [dbo].[sproc_name] TO [role1], [role2], …
1
vote
1answer
28 views

SubSonic - calling sproc’s w/o parameters?

I noticed something with SubSonic 2.x that I'm sure others have run into... Calling a sproc with results = SPs.SpGetCountryList().GetDataSet(); I kept getting a Null reference exception. To get …
0
votes
0answers
41 views

TSQL Cascade delete for child records?

I have a parent/child table (simple tree) table structure (ID, ParentID), where I want to delete (and get the ID of) all children for a given parent ID - similar to this post …
1
vote
3answers
105 views

Exec sproc from Powershell

I would like to execute a stored procedure from Powershell (v2) against a SQL Server 2008 database. Coming from using C# as my primary language, I'm doing it in that fashion. For example, when I need …
0
votes
2answers
50 views

What is the cost of an unused sproc

I've inherited a database with a surprisingly high number of unused sprocs. I've extracted the names of the used sprocs from the DLL that access it (all access is via that DLL), and from EXEC …
0
votes
1answer
34 views

SubSonic - Using Sprocs vs in-line code-behind query?

I'm curious about at what extent I should be writing sproc's. Obviously for actions that require transactions, etc. However for a simple validation against one table and values within, is it still …
1
vote
1answer
53 views

Fastest, easiest way to create a table from a stored procedure.

I use system stored procedures all the time, but always need/want to filter or sort the results of the sproc. I typically use a table variable for this, but defining the fields/datatypes for the table …
0
votes
2answers
32 views

How can I make a multi search SPROC/UDF by passing a tabled-value to it?

I actually want to achieve the following description This is the table argument I want to pass to the server <items> <item category="cats">1</item> <item …
2
votes
2answers
119 views

Can LINQToSQL be used with sproc that uses sp_executeSQL? If not, how do you handle?

LINQToSQL doesn't like my sproc. It says that the sproc has return type "none", which is probably, because I am using an sp_ExecuteSQL statement to produce the results. The SQL Server Sproc Code I …
0
votes
3answers
697 views

How do I call a stored procedure from NHibernate that has no result?

I have a stored procedure that logs some data, how can I call this with NHibernate? So far I have: ISession session = .... IQuery query = session.CreateQuery("exec LogData @Time=:time @Data=:data"); …
0
votes
1answer
57 views

How do I get identity from one sproc and pass it in to another sproc?

Hi all i'm looking for a way to pass in a generated id from a sproc to another sproc. i.e. @name varchar(12), @descript varchar(55) @test_date date, @test_result varchar(1) BEGIN EXEC …
0
votes
3answers
70 views

Execute a SProc from within a Sproc (using params passed in)

Hi all, Does anyone know of a way to execute a stored procedure from within a stored procudure using some of the params passed in from the original procedure. i.e. if i pass in params @id, @event …
2
votes
2answers
192 views

[F#] Nullable values do not get modified when passed into C# code by reference.

I have an F# variable defined as follows let id = new Nullable<int>() and I am passing it from F# into a C# function that takes a ref Nullable<int> and, subsequently, assigns it a value …
1
vote
2answers
463 views

How to pass a Nullable<int> into a stored procedure… from F#?

I'm trying to call a stored procedure with an output parameter from F#, so I need to pass an int? value initialized to null. However, F# is resisting my attempts, saying that the object cannot be …
0
votes
0answers
46 views

VS 2005 cannot view Sybase SPROCs?

Hi, Im using the VS2005 Table Adapter query wizard to design my datasets. However, I cannot see any SPROCS on my sybase database when selecting ' use existing stored procedure ' In the drop down …

1 2 next
15 30 50 per page