About 50 results
Open links in new tab
  1. Function vs. Stored Procedure in SQL Server - Stack Overflow

    In SQL Server, functions and stored procedure are two different types of entities. Function: In SQL Server database, the functions are used to perform some actions and the action returns a result …

  2. sql server - How can I filter words in SQL using a function? - Stack ...

    How can I filter words in SQL using a function? I'm having a hard time if I explain it, so I'm giving an example: ID WebsiteName 1 www.yahoo.com 2 www.google.com 3 www.youtube.com What I want …

  3. sql - Window functions to count distinct records - Stack Overflow

    0 If you are using T-SQL, it is directly possible to use a window function by using APPROX_COUNT_DISTINCT, so for example:

  4. Azure Functions: Can't open lib 'ODBC Driver 17 for SQL Server'

    Jul 25, 2023 · Now that python 3.11 is fully supported for azure functions, I've discovered that they come with "ODBC Driver 18 for SQL Server" installed, instead of the version 17 which is installed on …

  5. Where are user defined functions stored in MS SQL Server 2008?

    Jan 11, 2012 · In SQL Server Management Studio (SSMS) look under the Programmability\Functions branch. Since you asked, here is how to do it in SQL, not that it will help you if you don't have …

  6. Difference between scalar, table-valued, and aggregate functions in …

    Jul 14, 2016 · What is the difference between scalar-valued, table-valued, and aggregate functions in SQL server? And does calling them from a query need a different method, or do we call them in the …

  7. SQL Server - where is "sys.functions"? - Stack Overflow

    Jun 3, 2015 · 121 SQL Server 2005 has great sys.XXX views on the system catalog which I use frequently. What stumbles me is this: why is there a sys.procedures view to see info about your …

  8. Using RegEx in SQL Server - Stack Overflow

    Jan 19, 2012 · On-prem Microsoft SQL Server will gain the same regex feature in the next major release ("vNext" as they say; so, that'll be SQL Server 2025 presumably). The new set of functions is …

  9. sql server - Error Handling in User Defined Functions - Stack Overflow

    Sep 12, 2013 · I want to write a non-CLR user-defined function in SQL Server 2005. This function takes an input string and returns an output string. If the input string is invalid, then I want to indicate an erro...

  10. SQL Server: How to list all CLR functions/procedures/objects for ...

    select * from sys.assembly_modules This should list all functions and the assemblies they're defined in. See the Books Online help page about it. Returns one row for each function, procedure or trigger …