Viewing 15 posts - 451 through 465 (of 13,429 total)
Right, but the administration of everything else except availability groups or replication can be simplified. So yes, the cname is not helpful for that, but it will save time on...
June 3, 2017 at 2:20 pm
we create CNAMES and make our Developers use those for connection strings specifically so we can upgrade or replace servers behind the scenes.
if everyone connects to the cname [SuperServer],...
June 3, 2017 at 6:31 am
if this is deployed to the SSISDB catalog, then there is a detailed log you can check(SSMS>>Object Explorer>>Integration Service Catalogs>>SSISDB>>TheSpecificProject
since you say it runs on Saturday without errors, but...
June 3, 2017 at 6:25 am
yes, SSRS can use an expression to validate the length of your input;
this stackoverflow has an example that was testing a credit card length = 16, basically the same...
June 1, 2017 at 10:26 am
As always, it depends on the implementation.
if it is just an SSMS consumption,
at the procedure level, all you can do is add an error;IF LEN(@param)...
June 1, 2017 at 9:51 am
yes, that was it, thank you Jacob and Sue!
i was locked into search dmvs with *xe* in them.
Awesome, and thank you again!
June 1, 2017 at 9:17 am
May 31, 2017 at 5:14 am
GailW here's something I wrote to enumerate the people who inherit permissions from a group, and do not have an explicit login in sys.server_principals
IF OBJECT_ID('[dbo].[sp_help_adusers]') IS...
May 30, 2017 at 2:25 pm
one day back on 07/28/2016 i was inspired to create a procedure to do this;
as everyone has already identified, the problem is keeping up with releases. how many patches, CU's...
May 30, 2017 at 1:39 pm
if the columns are already varbinary, are you using procedures to return unencrypted data for selects? if you are already doing that, you should use procs for insert/update/delete as well.
May 30, 2017 at 10:40 am
so much of encryption depends on the data type of the destiantion column, and the type of encryption you care to use.
most encryption methods expect a varbinary column, so...
May 30, 2017 at 7:56 am
Gail addressed the performance aspect of it; fragmentation is very low on the "fix it" list as far as performance goes.
If you want to address the fragmentation, here's...
May 30, 2017 at 6:47 am
as far as tracking if it happens again, i''d create an extended event to capture database creation and deletion, and add login disabled, as well as anything else you think...
May 30, 2017 at 5:43 am
I think you need to use a recursive CTE in this case, so that all possible relations are created through joining to the data itself .
if you are not...
May 29, 2017 at 6:46 am
it sounds like they are allowed to query the data with their tools of choice, but often write bad queries; maybe you could use the resource governor in that case;...
May 27, 2017 at 7:14 pm
Viewing 15 posts - 451 through 465 (of 13,429 total)