Viewing 15 posts - 61 through 75 (of 189 total)
george sibbald (5/3/2009)
cmille19 (7/20/2007)
That's correct at the DR site there is an identical server where all volumes are replicated at the disk level from one SAN to another SAN over...
May 3, 2009 at 7:10 pm
Created a Powershell script to import Excel 2007 or 2003 to a SQL table, Import-ExcelToSQL
April 26, 2009 at 1:48 pm
Blogged about Executing Powershell in SQL Server . Using the technique described in the blog post you have a fourth method to load Powershell data into SQL Server. The approach...
April 25, 2009 at 8:33 am
jsimpson (3/12/2009)
Ok, so this works
Get-SqlData 'VISTA-LAPPY\SQLEXPRESS' Worldship 'SELECT top 3 *...
March 13, 2009 at 1:28 pm
Are you passing the SQL instances as a parameter? For example, like this:
./get-invalidlogins 'Z002\SQL2K8'
February 22, 2009 at 7:28 am
NevJam (1/14/2009)
I've managed to rewrite your script so that my wmi...
January 14, 2009 at 6:15 am
There are some extra returns in the code in the article. Try this instead (notice the line breaks are different):
param ( [string]$ComputerName = "." )
Get-WmiObject -computername "$ComputerName" Win32_LogicalDisk -filter "DriveType=3"...
January 8, 2009 at 4:30 pm
Phil Factor (1/2/2009)
January 2, 2009 at 10:21 am
David Ly (12/16/2008)
when i ran:./diskusage.ps1 sydw1255|export-CSV -path ./diskusage.csv -noTypeInformat
I get this error:
An empty pipe element is not permitted.
At F:\Working Folders\PowerShell\diskusage.ps1:4 char:2
David,
Try executing just ./diskusage.ps1 by itself and see if...
December 17, 2008 at 6:12 am
thermanson (12/16/2008)
December 16, 2008 at 11:03 am
Are CSV files on the local SQL Server? Is the SQL Agent running under Local System or a Windows account?
December 9, 2008 at 6:34 pm
valenzat (12/8/2008)
The step did not generate any output. ...
December 9, 2008 at 8:05 am
There are huge differences in licensing terms for virtualized SQL Server vs. Oracle and yes Microsoft is more virtualization friendly from a licensing perspective. Here's a link to an article...
December 9, 2008 at 7:58 am
I have dozens SQL Agent jobs in 2000 and 2005 servers which call powerhell scripts from powershell.exe. The JobStep type is set to CmdExec. Try testing a single job step:
C:\WINDOWS\system32\WindowsPowerShell\v1.0\powershell.EXE...
December 8, 2008 at 9:26 pm
Its kind of funny to see a white paper touting running Oracle virtualized when unliked SQL Server, Oracle is not virtualization friendly from a licensing perspective. Oracle requires you license...
December 7, 2008 at 12:07 pm
Viewing 15 posts - 61 through 75 (of 189 total)