Viewing 15 posts - 601 through 615 (of 13,460 total)
I believe that when the CLR is being compiled, it assesses what it is doing, and has unalterables built in rules, depending on what the CLR does, which determines whether...
Lowell
if we assume there's only one carat, and only one curly brace:
/*
(No column name)
CM.INIT
CM.INIT
*/WITH MySampleData(val)
AS
(
SELECT 'F0-B20170225131636437{A^CM.INIT}' UNION ALL
Lowell
There is nothing built in to SQL to do it via script; Even SSMS uses SMO to script objects out, it's not TSQL native.
Luis was kind enough to link...
Lowell
here's a script to generate the commands for you;
I keep this handy all the time: SELECT Quotename(s.NAME) + '.' + Quotename(o.NAME) AS QualifiedObject,
s.NAME ...
Lowell
when the FK was originally created, it would default to checking all the data, so it would be enabled and trusted.
some processes will disable foreign keys as part of...
Lowell
you would not be able to deploy any projects to SQL Express, nor use the SQL Agent to schedule packages.
Since SSDT is a completely separate installer, you can...
Lowell
Lowell