Viewing 15 posts - 121 through 135 (of 486 total)
John: You're right about the variable not substituting. The literal "*_GOL_*" returns the correct list.
Any ideas how to make this work?
September 2, 2015 at 5:35 am
$Code = "GOL"
This returns all the groups having "GOL" in their names:
Get-QADGroup "*$Code*"
This returns all the groups having _GOL_ in their names:
Get-QADGroup "*`_$Code`_*"
Both of these return nothing:
Get-ADGroup -Filter {Name -like...
September 2, 2015 at 5:02 am
Matt: Yes, that can be handled in my design. Although as I mentioned, I'm going to have to do some serious testing in order to determine if this is even...
August 28, 2015 at 5:48 am
You're now technical talking about *bi-temporal support*, not just temporal. As in - in order to provide the correct history in your OLTP, you will need to keep track of...
August 27, 2015 at 12:07 pm
That's what I'm getting at: there won't be a separate warehouse anymore. Although historical reporting will not be done against the live database.
And yes, the application will be managing the...
August 27, 2015 at 8:24 am
Our product *is* the information in our database: if some of that content does in fact change 10 times in 10 minutes -- an unlikely scenario, but theoretically possible --,...
August 27, 2015 at 7:28 am
Where is gets complicated: our DB is effectively both OLTP and DSS/warehouse. For many years, we've been able to segregate the roles on separate servers, by refreshing the DSS server...
August 26, 2015 at 11:19 am
Hmmm. I see I've used the wrong term: I guess that should be "Temporal Database".
Although to be honest, I can't really see how they differ... tables have valid-from and valid-to...
August 26, 2015 at 5:42 am
Hi Shawn,
Thanks for the response.
1) Yep, as long as I know the password, life is fairly simple. But I don't. Which brings me to...
2) Execute As or SetUser would...
August 24, 2015 at 5:34 am
I like that, a little easier on the eyes.
August 24, 2015 at 4:57 am
Something like this?
http://mspowershell.blogspot.ca/2013/01/executing-tasks-in-parallel-in.html
August 19, 2015 at 12:01 pm
Using my credentials (I'm a member of local admin on domain_1 SQL servers, and member of sysadmin on the SQL Servers. I'm an average user on domain_2.)
Msg 15404, Level 16,...
August 18, 2015 at 6:03 am
Hmmm....I wonder if we changed the SQL Server account to one from the other domain?
August 18, 2015 at 4:49 am
This should find you the rows in the result set that have the same jobno:
;with temp as (SELECT r.jobno
, r.proref
, p.proadd1
, p.propstcde
, pr.decode
, re.code
, wo.wfeedname
, m.mnodename
, wn.payval
, s.statedate
FROM repository r
INNER...
July 3, 2015 at 5:14 am
Viewing 15 posts - 121 through 135 (of 486 total)