Viewing 15 posts - 3,046 through 3,060 (of 3,220 total)
paul.knibbs (2/2/2012)
February 2, 2012 at 4:33 am
Sheesh...and I thought I was a pedant. Really guys, is this not straying off topic? 😉
February 2, 2012 at 1:50 am
I am a developer and am here to improve my knowledge of SQL Server especially my T-SQL
As a bit of a pedant when it comes to coding, I read the...
February 2, 2012 at 1:21 am
I used the following:
try
{
# Open Connection to Server #
$conn = New-Object System.Data.SqlClient.SqlConnection "Server=$s;Database=$d;Integrated Security=SSPI;";
$conn.Open();
#...
February 1, 2012 at 12:51 am
I think you are trying to utilise two different error handling mechanisms/techniques. Only one can "win" thus you end up with an Either/Or situation.
Can you not achieve this by placing...
January 31, 2012 at 12:25 am
Jeff Moden (1/25/2012)
babatmanpub (1/25/2012)
Just for those who would like to change $pshome : you can do it here :with regedit
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PowerShell\1\PSConfigurationProviders\Microsoft.PowerShell]
"ApplicationBase"="c:\\Windows\\System32\\WindowsPowerShell\\v1.0"
Nicely done.
Shifting gears a bit (and no implications about...
January 26, 2012 at 1:54 am
TravisDBA (1/23/2012)
January 23, 2012 at 8:39 am
L' Eomot Inversé (1/23/2012)
January 23, 2012 at 8:27 am
Agreed with all. Sometimes you have to research through experimentation but the key difference is the output of any such experimentation:
Output: Knowledge - This is research and is a invaluable...
January 23, 2012 at 7:28 am
I am always amazed when people (a minority - I hope!!!) post on forum (it happens here) looking for a script to use in production. From the way some of...
January 23, 2012 at 2:51 am
I went back to University after working as an IT professional for 2 years. I got a job in a bar, not unusual for a student, but it was important...
January 20, 2012 at 2:48 am
The only way I know is to kill the process and I would NEVER recommend doing that as a standard procedure.
Sorry that I can't be more helpful.
January 18, 2012 at 8:47 am
It sounds as though they are console applications as opposed to Windows Services. If so, I assume that they are waiting for a keypress from the console that launched them....
January 18, 2012 at 12:27 am
Viewing 15 posts - 3,046 through 3,060 (of 3,220 total)