Viewing 15 posts - 3,556 through 3,570 (of 6,679 total)
In additiona to what Lowell has shown, there is a parameter available that defines the database to be used for the query: @query_database (I think - look it up to...
October 13, 2010 at 8:19 pm
Another option is:
PS> Get-ChildItem $path -Recurse | % {$_.GetAccessControl()}
Or, you can use an expression:
PS> Get-ChildItem $path -Recurse | Format-Table FullName, @{Label="Owner";Expression={$_.GetAccessControl().Owner}}
October 13, 2010 at 8:16 pm
For the owner:
PS> $path = 'T:\MSSQL'
PS> Get-ChildItem $path -Recurse | % {(Get-Acl $_)} | Format-Table
By default, that will get you the Path, Owner and Access. Not sure about...
October 13, 2010 at 8:02 pm
chris.s.powell (10/13/2010)
Why not create a seperate Maintenance Plan for each Db?
Because then you don't have control over the sequencing of the backups. However, you could create separate maintenance plans...
October 13, 2010 at 2:27 pm
If you are looking to speed up the transfer of the compressed file, then your options are limited. If you can get away from FTP, you could use a...
October 13, 2010 at 2:20 pm
Backing up across the network is much more open to failure. If there are any issues with the network, your backups will fail. Additionally, there are configuration settings...
October 12, 2010 at 8:14 pm
You really shouldn't use a percentage for auto-growth, on either the data or log files. You don't really want that to ever happen, but if it does - you...
October 11, 2010 at 1:41 pm
Apparently, you can use this on a full backup also. This can be used when migrating a database to a new server.
Perform the full backup with norecovery - at...
October 9, 2010 at 10:42 am
Read the article in my signature on Managing Transaction Logs. You cannot move data in the log files the way you are trying to, you have to perform transaction...
October 9, 2010 at 10:39 am
Shawn, yes - I didn't see that. Thanks.
October 8, 2010 at 1:34 pm
The recommended method is now:
1) Alter Database {db} Modify File (Name = logical_name, filename = 'new pathame');
2) Alter Database {db} Set Offline With rollback immediate;
3) Copy files to new location
4)...
October 7, 2010 at 4:26 pm
First, you need to identify how a user is associated to a particular group. Looking at the data, there is no way to tell that User2 belongs to Group1....
October 6, 2010 at 2:41 pm
Ken Klaft-381933 (10/6/2010)
October 6, 2010 at 2:34 pm
Okay, I want to make sure I am understanding here.
Did you use SSMS to create the maintenance plan?
Did you use the maintenance plan schedule to schedule and create the agent...
October 6, 2010 at 10:20 am
Okay - how was the agent job created? Did you create the agent job manually, or did you setup the schedule in the maintenance plan and set it up...
October 4, 2010 at 1:40 pm
Viewing 15 posts - 3,556 through 3,570 (of 6,679 total)