About 53 results
Open links in new tab
  1. Python, SQLAlchemy pass parameters in connection.execute

    sql = 'SELECT ...' data = { 'user_id' : 3 } results = _sql_to_data(sql, data) Using keywords as your parameters is just one way of specifying the arguments to the execute() function. You can read the …

  2. Pass a table variable to a SQL Server stored procedure

    Jun 18, 2017 · I'm trying to pass a table variable to a stored procedure and I get the error: Operand type clash: table is incompatible with TY_MyType Here are the relevant pieces of code: 1 - Type Definition

  3. SQL : in clause in stored procedure:how to pass values

    I want to write a SQL Server 2005 stored procedure which will select and return the user records from the user table for some userids which are passed to the stored procedure as parameter. How to...

  4. Pass select result as parameter of stored procedure

    The SELECT query you wrote in your example would probably bring back multiple rows (your SELECT does not feature a WHERE clause or a TOP (n)). If your intention is to be able to have your …

  5. PASS - SQLBI

    Jan 26, 2018 · PASS Summit is the largest conference about the Microsoft Data Platform technology. Started as a Professional Association for SQL Server community, now the PASS brand includes the …

  6. How do I escape a single quote in SQL Server? - Stack Overflow

    Oct 19, 2009 · I am trying to insert some text data into a table in SQL Server 9. The text includes a single quote '. How do I escape that? I tried using two single quotes, but it threw me some errors. eg. …

  7. sql - including parameters in OPENQUERY - Stack Overflow

    Jul 31, 2010 · From the OPENQUERY documentation it states that: OPENQUERY does not accept variables for its arguments. See this article for a workaround. UPDATE: As suggested, I'm including …

  8. how to pass parameters to query in SQL (Excel) - Stack Overflow

    Feb 19, 2014 · Use "Get Data" and SQL query option, filling out the server name and adding the SQL query code. With that done, you can create a dummy table (s) in your Excel file that can take …

  9. How to pass an array into a SQL Server stored procedure

    Jun 19, 2012 · 372 How to pass an array into a SQL Server stored procedure? For example, I have a list of employees. I want to use this list as a table and join it with another table. But the list of employees …

  10. How to pass variable as a parameter in Execute SQL Task SSIS?

    Sep 30, 2011 · In your Execute SQL Task, make sure SQLSourceType is set to Direct Input, then your SQL Statement is the name of the stored proc, with questionmarks for each paramter of the proc, like …