About 197,000 results
Open links in new tab
  1. Loading an Excel Validation list directly from a SQL Query

    Oct 18, 2017 · 0 I want to know if it's possible to load an Excel Validation list directly from an external query. I'm expecting to do this in VBA somehow.

  2. sql - The "right" way to do stored procedure parameter validation ...

    Jun 19, 2012 · The sample code for validation in mySQL stored procedure: DROP PROCEDURE IF EXISTS update_payment; delimiter $$ CREATE PROCEDURE update_payment ( …

  3. sql server - Data Validation Via SQL Script - Stack Overflow

    Apr 26, 2023 · While asking a question, you need to provide a minimal reproducible example: (1) DDL and sample data population, i.e. CREATE table (s) plus INSERT T-SQL statements. (2) …

  4. How can I put validations on a SQL table column?

    Jun 3, 2011 · How can I put validations on a SQL table column? Asked 14 years, 4 months ago Modified 14 years, 4 months ago Viewed 8k times

  5. sql : How is data validation done through Stored procedures?

    Apr 18, 2011 · 3 Data validation occurs because to pass data into a stored procedure, it's done via parameters which are explicitly set to Oracle data types (or user defined types, which are …

  6. How can I validate data before insert/update with SQL Server?

    How can I validate data before insert/update with SQL Server? Asked 9 years, 2 months ago Modified 9 years, 2 months ago Viewed 13k times

  7. sql - how to valiate Millions of data? - Stack Overflow

    0 How to validate the scenario? Scenario 1: Source File is Flat File which contains Millions of data. All the data from the source file is loaded to target table in the Data Base. Now the …

  8. validation - Verification of SQL database - Stack Overflow

    Jun 14, 2017 · I am currently doing a SQL assignment but a certain task has mentioned that we need to implement validation and verification for our tables in the database which we created. …

  9. Trigger for INSERT to validate input data in SQL Server?

    Dec 2, 2021 · My problem: table dbo.student has StudentID like SV001. How can I create a trigger to check data inserted into dbo.student has a StudentID that begins with SV and the numbers …

  10. SQL Server - validate table column values against with values …

    Apr 16, 2018 · In the example, validation rule #1 (ValidationID = 1) has two valid values, and validation rule #2 specified 3 valid values. I'd like to (using SQL) dynamically create a query …