Search Results

5
votes

Solutions for INSERT OR UPDATE on SQL Server

In SQL 2008 you can use the MERGE statement …
0
votes

Parameterized CREATE VIEW possible?

It looks to me like you are trying to create a dynamic query using parameters, which is not how a parameterized query is intended to work. They do not simply get concatenated into the string. …