Viewing 15 posts - 1,246 through 1,260 (of 13,445 total)
i use this to enumerate all the members that belong to groups that have been granted access from AD:
i've found that some groups cannot be enumerated int he cases where...
February 24, 2016 at 11:05 am
spaghettidba (2/24/2016)
Actually, I never perform cache analysis in production.I usually dump the whole cache to a table in my local sql server and start from there.
excuse the neophyte question,...
February 24, 2016 at 10:33 am
as far as i know, filezilla, specifically, cannot be called from a command line or automated; it's a GUI tool;
i've used winscp.exe and psftp.exe (putty sftp) with script taskes/command executes;
i...
February 23, 2016 at 11:07 am
I've seen something similar, where a csv file was renamed to have an xls extension...so the file was not truely xls, so it could not be opened.
find the original file,...
February 22, 2016 at 2:41 pm
a maintenance plan tends to use a shot gun approach: rebuild all indexes, regardless of whether they need to be rebuilt or not.
you are probably at that tipping point where...
February 22, 2016 at 10:32 am
there are a bunch of settings you can do in MySQL to improve the loading of flat files; back when i loaded that huge Ashley Madison dump for fun, i...
February 22, 2016 at 7:35 am
Steve i know you can easily get the data with the reserved characters escaped out wiht ampersand amp semicolon, would that be an alternative?
it depends on your data, but this...
February 22, 2016 at 7:12 am
I have this old snippet form a post from years ago.
both this and your example are non-sargable, meaning it's going to table scan for the values, which is what full...
February 18, 2016 at 6:22 am
I've used the answer below to get the Active Directory password policy via powershell:
import-module ActiveDirectory
Get-ADDefaultDomainPasswordPolicy
PS H:\> Get-ADDefaultDomainPasswordPolicy
ComplexityEnabled : True
DistinguishedName ...
February 15, 2016 at 10:30 am
also, does the table inside follow some sort of naming convention, but is dynamic?
for example a table named [Invoices_2016-02_14] from yesterday, but it's [Invoices_2016-02_15] from today?
if you can determine...
February 15, 2016 at 5:27 am
mw112009 (2/12/2016)
Lowell:The one I picked ( I did a quick search ) uses the following objects.
You mentioned stuff from INFORMATION_SCHEMA is lacking some info.
Can you mention a few ?
INFORMATION_SCHEMA.TABLES
INFORMATION_SCHEMA.COLUMNS
INFORMATION_SCHEMA.COLUMNS
sys.identity_columns
sys.columns
information_schema.table_constraints
sys.indexes
it's in...
February 12, 2016 at 8:37 am
I went deep, deep down this rabbit hole, and built a procedure that i can call from tsql .
tin the long run, you have to use the sys. schemas and...
February 12, 2016 at 8:11 am
not suspicious; it sounds like a missing GO statement between drop create procedure and drop/create function in someones script.
it happens to us all at some point
IF OBJECT_ID('[dbo].[sp_Bad]') IS NOT NULL...
February 11, 2016 at 11:49 am
if not too much time has passed, the default trace would have the DROP FUNCTION event, complete with whodunnit information; you might have an automated process, or someone may just...
February 11, 2016 at 7:22 am
easy fix.
if the function has no parameters, you still need the parenthesis for the parameter list.
alter FUNCTION [dbo].[fnPressGaneyDownload] ()
your function could easily be converted to an inline table value function,...
February 9, 2016 at 6:20 am
Viewing 15 posts - 1,246 through 1,260 (of 13,445 total)