Viewing 15 posts - 571 through 585 (of 13,445 total)
March 14, 2017 at 8:14 am
touching the data via a linked server, in itself, does not violate the license agreement.
it depends on what the developer is DOING with the data.
populating dev with...
March 10, 2017 at 1:33 pm
after you install, then you probably need to do the following:
run the SQL configuration tool and enable TCP IP
enable remote connections on the instance
Add Logins to your...
March 10, 2017 at 9:45 am
SQLLocalDB is a special version of an MDF for SQL, it does not allow remote connections, and only one person can open the file at a time.
if you...
March 10, 2017 at 8:37 am
you cannot, under any circumstances, change the value in SQL from UNSAFE to anything else.
you can remove and redesign features in your SQL CLR to NOT use unsafe methods,...
March 8, 2017 at 2:21 pm
if you need old vs new and also whodunnit information, a trigger it the way to go.
if you need old vs new, but not whodunnit, Change Data Tracking...
March 8, 2017 at 2:19 pm
SSRS has a Grouping band, and the MAX function exists in expressions...did you try that yet?
it's a little hard to help from the screenshot., so i can only...
March 8, 2017 at 2:08 pm
off hand, i'd say it looks like you need to use something like SELECT MAX(ASP_New?) As ASP_New FROM SomeTable group by March 8, 2017 at 1:05 pm
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...
March 8, 2017 at 11:04 am
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
March 7, 2017 at 12:40 pm
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...
March 7, 2017 at 12:21 pm
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 ...
March 3, 2017 at 1:36 pm
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...
March 3, 2017 at 11:19 am
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...
March 1, 2017 at 7:10 am
February 28, 2017 at 8:30 am
Viewing 15 posts - 571 through 585 (of 13,445 total)