Tagged Questions
4
votes
5answers
3k views
Alter SQL Function Referenced by Computed Column
If you set up a table's column to be a computed column whose Formula calls a Function, it becomes a pain to change that underlying Function. With every change, you have to find every single column ...
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
8answers
624 views
Dynamic table design (common lookup table), need a nice query to get the values
sql2005
This is my simplified example:
(in reality there are 40+ tables in here, I only showed 2)
I got a table called tb_modules, with 3 columns (id, description, tablename as varchar):
1, ...
1
vote
2answers
45 views
Modify FindAll function to a DoesExist function in SQL Server
I have the following recursive function:
ALTER FUNCTION [dbo].[ListAncestors]
(
@Id int
)
RETURNS TABLE
As
RETURN
(
WITH cte As
(
SELECT
UserId,
...
1
vote
3answers
443 views
Performance of Sql subqueries\functions
I am currently working on a particularly complex use-case. Simplifying below :)
First, a client record has a many-to-one relationship with a collection of services, that is, a single client may have ...
0
votes
3answers
53 views
Shall i add If Exists to my SQL Stored Procedure?
Afternoon All,
I have a button on a web page that when is clicked by the user inserts data into a table. this button has a message box assigned to it, to let the user know the records have been ...
0
votes
1answer
74 views
SQL Function and default values
I've got a SQL Function which has 3 parameters. The 3rd parameter has a default value of NULL. However, I cannot just write:
dbo.myFunction(Param1, Param2)
I get the error:
An insufficient number ...
0
votes
4answers
318 views
How to create a function that returns a comma separated list of values?
I am trying to create a function that returns a comma separated list of values based on a table name and column name parameters.
The idea was to build a dynamic SQL statement on the fly and then ...