Viewing 15 posts - 16 through 30 (of 104 total)
Chrissy321 (3/8/2012)
Can you use the extended properties of a database.. Right-click on the database and go to...
March 8, 2012 at 10:20 am
Why don't you just use powershell to get the instance + db names and load them into a database table?
March 8, 2012 at 7:02 am
What have you got so far? Have you lookied into http://msdn.microsoft.com/en-us/library/ms219082.aspx ??
February 24, 2012 at 8:15 am
Just keep in mind that the default PS execution policy is restricted so you will need to get a sys admin to change it for you. Also, to create a...
February 24, 2012 at 4:39 am
Something like this should work for you..
$con = "server=localhost;database=YourDatabase;Integrated Security=sspi"
$cmd = "select * from dbo.YourTable"
$path = "c:\Rpt\MyReport_" + $(get-date -f yyyyMMdd) +...
February 23, 2012 at 10:34 am
Powershell + windows scheduler?
February 23, 2012 at 9:18 am
Brilliant! Thanks for your time and have a good week!
January 30, 2012 at 5:20 am
mohammed moinudheen (1/17/2012)
1) Find number of databases in each instance
2) Find on which date last backup happened
3) Get the location...
January 20, 2012 at 3:45 am
or just right click on instance/reports/schema changes history
January 10, 2012 at 5:29 am
December 6, 2011 at 1:39 am
Not supported..use Visual Studio 2008
November 28, 2011 at 5:53 am
declare @command varchar(8000)
set @command = 'rename c:\sgrs\SGRS_SGCTCentral_7_20111111102846.rar verificadoSGRS_SGCTCentral_7_20111111102846.rar'
...
November 17, 2011 at 9:21 am
To be honest with you I would use PowerShell for this task.
This URL will get you started
November 7, 2011 at 3:23 am
Viewing 15 posts - 16 through 30 (of 104 total)