Tagged Questions

36
votes
9answers
34k views

Function vs. Stored Procedure in SQL Server

I've been learning Functions and Stored Procedure for quite a while but I don't know why and when exactly I should use functions or stored procedure instead of one another. They look same to me maybe ...
4
votes
2answers
56 views

Update field by a function

I have the function which gets ID and returns date from table if it exists or returns current date if isn't: CREATE FUNCTION [dbo].[CLOSEDATE] (@ID int) RETURNS datetime AS BEGIN DECLARE ...
4
votes
3answers
545 views

MySQL stored procedure vs function, which would I use when?

I'm looking at MySQL stored procedures and function. What is the real difference? They seem to be similar, but a function has more limitations. I'm likely wrong, but it seems a stored procedure can ...
4
votes
1answer
273 views

MySQL function to compare values in a db table against the previous

Iam quite new to functions in SQL and I would like to create a function to compare values in a MySQL table against previous and I am not sure how to do this. For example (iId is the input value) ...
3
votes
2answers
1k views

How to check date of last change in stored procedure or function in SQL server

I need to check when function was changed last time. I know how to check creation date (it is in function properties window in SQL Server Management Studio). I found that in SQL Server 2000 it wasn't ...
1
vote
2answers
38 views

SQL Server function - prevent duplicates

I have a SQL Server 2005 database. Table A has an identity column in it as well as another manual Id column that spans several rows. The second id column is in the format of '0000000098' and must be a ...
1
vote
1answer
36 views

SQL Array within a cell

I have a cell that contains an array of characters seperated by commas i.e. "1,2,3,4,5" My question is, is it possible to remove a particular element of the array such as if I wanted to remove "1" ...
1
vote
1answer
2k views

Selecting multiple fields into multiple variables in a MySQL stored procedure

I am a little new to store procedures in MySQL and was wondering if I can SELECT multiple columns into multiple variables within the same select query. for example (iName is the input to the ...
0
votes
1answer
26 views

How to call a function from SQL stored procedure

I have function that have been colled in stored procedure. The function returns a table and have to fill another table. Maybe this queistion might be seems a little naive but im a newer in T-SQL. ...
0
votes
1answer
45 views

How to manipulate ntext type data in stored procedure of SQL Server 2008

I was wondering how to manipulate ntext datatype in stored procedure of SQL Server 2008. We have a column of type ntext in a table. We have to fetch data from that column, parse the data, change and ...