A function defined in a relational database system. Most RDBS's include numerous built-in functions and also allow for the creation of additional custom functions.
0
votes
1answer
23 views
Sql - Fetch next value to replace variable value
Hi guys my basic sql knowledge needs some help
I want to be able to replace a variable value with a value in a table and keep running the query until the end value in the table is reached
start ...
0
votes
3answers
20 views
sql function not retrieving table and giving error
I have written following function in SQLServer 2005
Following is the function:
create function fnBillParticulars()
return table
as
return (select * from billParticulars where Id='2425')
go
Its ...
0
votes
1answer
14 views
Using extract function in your own sql function
I'm trying to create the following function into my Postgres database:
create or replace function public.extract_hour(time_param timestamp with time zone) returns double precision language sql as ...
0
votes
1answer
15 views
call sql function in stored procedure with different userId each time
I have a sql fuction and using sql server 2005.
dbo.util (@dailyDate,@userId)
Now I want to call this function for each @userId for a particular Date.So I am writing a Stored Procedure.
Create ...
0
votes
2answers
24 views
sql max function with extra data with it
I have the following query:
SELECT q.category_id as Category_id , COUNT(q.question_id) as count
from questions as q
INNER JOIN interestingQuestion as i using (question_id)
group by q.category_id
...
0
votes
1answer
21 views
SQL function returns correctly but shows error in Management Studio
I have this function, which although it returns the value correctly, shows an error in the Management Console with the squiggly red underline:
Cannot find either column dbo or the user-defined ...
0
votes
2answers
53 views
In postgres, can I write a custom function to handle different numeric types without multiple function definitions?
As an example, suppose I'd like to write a custom function in postgres that safely divides two numbers -- i.e. it should check whether either of the arguments are null and whether the divisor is zero. ...
1
vote
1answer
70 views
For loop alternative for mysql
Lets assume I have a tax generating module on which the tax for certain range of amount is dynamic. The range is stored on a table like:
+---------------+---------------+-----------+
| range_from ...
0
votes
2answers
58 views
Function to DELETE rows taking the tablename as parameter
I want create a function:
CREATE OR REPLACE FUNCTION medibv.delAuto(tableName nvarchar(50), columnName nvarchar(100),value
nvarchar(100))
RETURNS void AS
$BODY$
begin
DELETE from tableName ...
0
votes
0answers
19 views
Scalar User-Defined Function in SQL 2008 Not Being Recognized
I created the following function in SQL 2008
CREATE FUNCTION dbo.udfSetSupplyStatus(@strOrderID nvarchar(16), @intLineNo int, @intOrderQty int, @strPartID nvarchar(16), @strWarehouseID nvarchar(16), ...
0
votes
2answers
33 views
How to ceil decimal point?
As round will round either up or down, it can't be used in my case all though you can control the decimal point.
The problem is floor and ceil does not allow to control the decimal point, in case of ...
0
votes
0answers
28 views
PWDENCRYPT and PWDCOMPARE IN LINQ TO SQL
I want to use pwdencrypt and pwdcompare in my Linq To Sql Query. Please can someone help me on how i can get this done.
I can not create a user defined function. Because i am migrating an application ...
0
votes
5answers
110 views
Entity Framework - How to convert from String to Integer in query
I have a legacy database with the same ID stored with multiple representations (string and integer). I need my query to join based on the key.
I know about SqlFunctions.StringConvert, but it ...
0
votes
0answers
28 views
SQL Server CLR TVF not multithread capable?
Regarding this previous stackoverflow question:
DRY CLR table-valued functions
It seems it only runs in single thread mode. To test this I modified the code slightly to prepend the Name field with ...
0
votes
4answers
98 views
Are SQL functions should be Uppercase or lowercase?
I am new in SQL and I was wondering what is the right way to write the functions because I know the norm for statements like SELECT is Uppercase, but what is the norm for functions? Because I seen ...
0
votes
1answer
65 views
MVC: Connect class to results of database function/stored procedure
How can I execute a SQL function in MVC?
I am trying to link the results of a table returning function to a class I defined. I have set up the connection string and created the database context with ...
-1
votes
1answer
43 views
Call of function of a database from the java-program
There is a Postgresql database with the following function cap
CREATE OR REPLACE FUNCTION net_train(terms text[], answer integer)
RETURNS void AS
$BODY$begin
--this code is stub
end;$BODY$
...
0
votes
2answers
143 views
Calling functions from CLR assembly (which has pinvoke method to load unmanaged assembly) in SQL Server 2008
I have a .Net assembly (64 bit environment) which has P/Invoke method to load an unmanaged assembly. I want to consume the method available in the .Net assembly in to the SQL stored procedures. ...
-2
votes
1answer
73 views
The equivalent of SQL's LIKE and _ wildcard in C#
I have a SQL function that needs to be converted to C#.
The SQL function uses the LIKE keyword and the wildcard '_'. How can I write the equivalent C# function?
Here is the SQL function:
Create ...
1
vote
2answers
57 views
Count within the aggregate SUM()
I have a table with 1000 rows. Columns exist are ID, DBID, TalkTime.
I am doing:
SELECT DBID, SUM(TalkTime)
FROM Incoming_Calls
GROUP BY DBID
This condenses down to approximely 18 rows.
I want to ...
1
vote
1answer
51 views
SQL: Last_Value() returns wrong result (but First_Value() works fine)
I have a table in SQL Server 2012 as the snapshot shows:
Then I'm using Last_Value() and First Value to get AverageAmount of each EmpID for different YearMonth. The script is as follows:
SELECT ...
0
votes
0answers
32 views
mysql error when creating function
I'm using mysql version 5.5.16 (community server) and i have a table
departments(
id int(11),
parent int(11),
name varchar(150))
and I'm trying to create a procedure to get all ids of children of ...
0
votes
1answer
108 views
PostgreSQL recursive function returns set of record
I am writing a PostgreSQL recursive function which returns a set of records, but I do not know the correct syntax of it. The recursive table here is Vertical which contains below columns:
CREATE ...
-1
votes
1answer
349 views
How to call an Oracle Function with multi out parameters [duplicate]
Possible Duplicate:
CALLING A STORED PROCEDURE IN TOAD
I am given a function in Oracle as i have shown below.However i could not make it run.
FUNCTION GetAdres (pCif NUMBER,
...
0
votes
0answers
67 views
Create temporary functions in an sql script for a Crystal report consumption
I created an sql script for my crystal report. However, i have so many subselects and logics that are repeating. I want to create a function that does the repeating logics and subselects. However, ...
1
vote
1answer
142 views
Error while creating a table-valued function inside SQL Server
I'm really a beginner in SQL Server programming. I'm writing a table-valued user defined function but when i execute it I get this errors:
*Msg 178, Level 15, State 1, Procedure Select_info_FN, ...
0
votes
2answers
66 views
Multiple SELECT statements for multiple independent outputs
I have a database in SQL Server listing maritime incidents containing the date of each.
For a chart illustration I now want to write a SQL statement (for Visual Studio) which gives the total number of ...
1
vote
2answers
45 views
Order By Combined
I have a result set where I want to apply a combined sort combined.
Example
SELECT Id, Name FROM Users
Result
Id Name
1 Albert
2 Alfred
3 Carl
4 David
5 Ernest
Now those users ...
0
votes
3answers
215 views
Having clause that filters out by max date
I'm trying to get the maximum date for an area_id from a 'review' table and return only those area_id's that have a max date_finished greater than one year (from today's date). The table structure is ...
2
votes
1answer
92 views
compare type time in a SQL function
I created a scalar-valued function that has the following (part) of code in it:
declare @start_time22 time(7);
select @start_time22=Courses.[Course start time] from Courses where [Course ID]=@val1 ...
0
votes
1answer
124 views
pgsql sql functions sequential execution
If I have these two Postgres function definitions saved in two seperate .sql files:
CREATE OR REPLACE FUNCTION column_exists(tablename text, colname text) RETURNS boolean AS
$BODY$
...
1
vote
2answers
156 views
Delete records from Oracle in sets
I am facing issue deleting set of records from a table named links_data because of huge set of data to be deleted and the Oracle DB ran out of temp space.
For the same with little knowledge of mine ...
1
vote
1answer
232 views
Very Slow SQL Server Query using Functions
This sort of follows on from a previous question:
SQL Server Query time out depending on Where Clause
In which a query would run extremely slowly depending on a where clause. I rewrote that query ...
-1
votes
2answers
61 views
How to convert a scalar SQL function that returns an ID to a procedure that returns the full result set [closed]
I have the following scalar value function that returns a specific Price ID for a given item at a given time. How do I convert it to a procedure that retuns the relevant rows of the Price table for ...
0
votes
2answers
759 views
How to call Oracle function which has SYS_REFCURSOR as OUT Parameter
create or replace
FUNCTION test_fun (
p_ref_cur OUT SYS_REFCURSOR,
p_a_code IN NUMBER DEFAULT 0,
p_category IN ...
0
votes
1answer
56 views
Update Statement Using An Existing Field and A Function
I have a table with a name field, holding a first name and last name seperated by a space.
Here's the simple test data I'm working with:
DROP TABLE IF EXISTS students;
CREATE TABLE students (
name ...
0
votes
1answer
65 views
Implementing Oracle's RAWTOHEX function in C#
I am looking to write the Oracle function rawtohex in C#.
I am looking at existing code that has been written and would like to be confirm if it is accurate.
public static string AsHexString1(this ...
1
vote
2answers
133 views
Why does this sql function not work with REPLACE?
I am having a problem with my sql function. The following function operates as expect but when I substitute, it only returns one row:
CAST(t.ColumnName as nvarchar(100))
for:
...
1
vote
3answers
135 views
Java Equivalent of Oracle translate
Is there any equivalent string function or library in java that behaves the way oracle translate function does?
In oracle I can do this:
select translate(
'23423k!(dfgd){sdf};',
'(){}k!',
'{}()'
...
1
vote
2answers
116 views
Linq to Entities Function to return whether integer parameter is in certain range
I have a set of 5 parameters, two upper limits and two lower limits of a range and the actual value. In my Linq-to-Entites query I would like to be able to return an integer depending on where the ...
0
votes
0answers
61 views
Identify transaction with default value table SQLServer
I have a table where I do only INSERT operations.
I'd like to uniquely identify these transactio operations through a unique default value (I could do some sequentially INSERT in a transaction that ...
4
votes
3answers
220 views
Database Function VS Case Statement
Yesterday we got a scenario where had to get type of a db field and on base of that we had to write the description of the field. Like
Select ( Case DB_Type When 'I' Then 'Intermediate'
...
1
vote
4answers
372 views
Convert stored procedure to table-valued query
I have this procedure
ALTER PROCEDURE [dbo].GetHerdByUserProc(@user int)
As
begin
Declare
@GroupId uniqueidentifier,
@UserTrade bit
Set @GroupId = ...
1
vote
3answers
121 views
How to create a nullable record in SQL Server 2008 R2?
I create a Inline table function in SQL Server 2008 R2, and I realized some queries return any record. So I'd like when that happens, returns a record with all the empty columns.
By example:
Col1 ...
2
votes
1answer
229 views
cannot pass dynamic query to sql-function
I cannot seem to find a way to pass my query as a parameter to my sql-function. My problem is table 'my_employees1' could be dynamic.
DROP FUNCTION function_test(text);
CREATE OR REPLACE FUNCTION ...
-1
votes
2answers
97 views
Join table with different datatype [closed]
I have following tables:
Orders
id int
orderName varchar(5000)
Communication
body varchar(5000)
attachment varchar(5000)
Sample Orders data:
id name
132 ordGD
589 ordPG
6321 ordMF
...
0
votes
2answers
307 views
SQL Function takes an sql string, execute the string and returns the table
I've done a lot of functions that return a table but somehow this one keeps on giving me an error at Begin and I couldn't figure out for the life of me why. My where statement is stored in a table. ...
0
votes
2answers
57 views
Creating a function out of a select statement in SQL
I have built a select statement to pick the date the participant was first recorded in the database. However I want to create a function out of this select statement to use it. I am fairly new to SQL ...
1
vote
4answers
148 views
Function that can be used in sql statement
I have a sql which returns 3 records
select emp_no from employees where dept_no='S3407'
results
1089
2092
1999
I need to use the above SQL in a function and function should return all three ...
1
vote
1answer
561 views
Executing Oracle Functions using Spring jdbc
I am trying to execute Oracle function using Spring jdbc.
But I am getting below error
CallableStatementCallback; bad SQL grammar [{? = call RATELIMIT_OWN.GET_LOGS(?, ?)}]; nested exception is ...



