Recent posts
Recent comments
Author: Rajib
Calender
<<  September 2010  >>
MoTuWeThFrSaSu
303112345
6789101112
13141516171819
20212223242526
27282930123
45678910
Blogroll
    rajib.bahar , Posted At 12/1/2008 10:54:00 AM
    I was looking at an old article related to MS Active Directory and Novel Edirectory. I noticed it was viewed 127,000 times. So, I thought I'd link back to that article. See [http://www.codeproject.com/KB/system/arbauthentication.aspx].

    Digg It!DZone It!StumbleUponTechnoratiRedditDel.icio.usNewsVineFurlBlinkListFacebook

    This posting is provided "AS IS" with no warranties, and confers no rights. It does not reflect any one's opinion other than the author.

    Be the first to rate this post

    • Currently 0/5 Stars.
    • 1
    • 2
    • 3
    • 4
    • 5

    As most of us know already, that powershell is the new shell around SQL 2008 to automate database related routines. It reminds me of the manpages in unix itlabs at the UofM. Anyways, I'll start posting few entries related to it. The example below, shows you how to manipulate .NET collection classes. 

    PS SQLSERVER:\> $c = New-Object "System.Collections.ArrayList"
    PS SQLSERVER:\> $c.Add("test")
    0
    PS SQLSERVER:\>
    PS SQLSERVER:\> $c.Add("your")
    1
    PS SQLSERVER:\>
    PS SQLSERVER:\> $c.Add("mind")
    2
    PS SQLSERVER:\>
    PS SQLSERVER:\> $c
    test
    your
    mind
    PS SQLSERVER:\>
    PS SQLSERVER:\> $c | Select-Object -first 2
    test
    your
    PS SQLSERVER:\> $c | Select-Object -last 2
    your
    mind
    PS SQLSERVER:\>



    Digg It!DZone It!StumbleUponTechnoratiRedditDel.icio.usNewsVineFurlBlinkListFacebook

    This posting is provided "AS IS" with no warranties, and confers no rights. It does not reflect any one's opinion other than the author.

    Be the first to rate this post

    • Currently 0/5 Stars.
    • 1
    • 2
    • 3
    • 4
    • 5