Forum Replies Created

Viewing 15 posts - 346 through 360 (of 644 total)

  • RE: Please find the logic for the below table in sql 2005

    adrian.facio (2/23/2012)


    Hello,

    I came up with these query using Divine's table ( i just took off a row 3 person 103 pair because i think they were inserted twice).

    select [Rows] .Row,

    ...


    Sujeet Singh

  • RE: How to instal sql server 2005(RTM) on windows server 2008 r2(64bit)?? error occured

    satishm94 (2/23/2012)


    no ...

    can u tell me where it will be????

    im new here...

    You can find it under the directory path:

    C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\Log


    Sujeet Singh

  • RE: How to instal sql server 2005(RTM) on windows server 2008 r2(64bit)?? error occured

    So did you check the setup log ??


    Sujeet Singh

  • RE: Update with order by

    Divine Flame (2/23/2012)


    Did you try this?

    SELECT ROW_NUMBER() OVER (ORDER BY [Name]) AS RowId,[Name]

    FROM #Temp

    ORDER BY [Name]

    If you just need to reset the ID column (with names in order) so...


    Sujeet Singh

  • RE: Update with order by

    Did you try this?

    SELECT ROW_NUMBER() OVER (ORDER BY [Name]) AS RowId,[Name]

    FROM #Temp

    ORDER BY [Name]


    Sujeet Singh

  • RE: Left Join Vs Where Clause

    sqlzealot-81 (2/23/2012)


    Divine Flame (2/23/2012)


    I don't understand your question. You already have the solution as version 2. True, you should put all the filter criteria in WHERE clause. There is no...


    Sujeet Singh

  • RE: Left Join Vs Where Clause

    I don't understand your question. You already have the solution as version 2. True, you should put all the filter criteria in WHERE clause. There is no point in putting...


    Sujeet Singh

  • RE: while Restore a Database how to avoid object.......:(

    Er.karthikn (2/22/2012)


    Hi Friends,

    I have a backup of one database physically.database suddenly crashed now I need to restore that database..so While restoring that database,some of the objects are waste I have...


    Sujeet Singh

  • RE: sys.sysprocesses

    sqlnaive (2/22/2012)


    How long these process ids remain there (in case the sessions are closed). I want to check only those session ids which are live, in use or not in...


    Sujeet Singh

  • RE: Disaster Recovery: How to regain your lost sysadmin access

    paul.knibbs (2/23/2012)


    jswong05 (2/22/2012)


    If you are already local administrator, why don't you just use DAC. See BOL if you don't understand DAC.

    Correct me if I'm wrong, but that would only work...


    Sujeet Singh

  • RE: TSQL _STORE PROCEDURE

    maheshkrishnas (2/21/2012)


    Hi all,

    I have to write storeprocedure program should create a file.if not just show these results when we run the SP

    store_salesstore_stat.csv target

    StoreProduct SalesStoreAvg Sales TV Avg SalesDVD

    S1TV...


    Sujeet Singh

  • RE: SSIS Package protection password

    imranx101 (2/22/2012)


    It works. Thanksss alot. You are genious. 🙂

    You are welcome 🙂 Its just your kindness to say that 🙂


    Sujeet Singh

  • RE: Index rebuilds/reorgs - identifying tables with LOBs

    As the error itself says, you have some LOB columns present in some of your tables/indexes. It is documented that you can rebuild the index ONLINE for those indexes which...


    Sujeet Singh

  • RE: SSIS Package protection password

    imranx101 (2/22/2012)


    Yes exactly it is. The job runs overnight.

    Then you can run below command & check the result:

    SELECT SJ.[name],SJS.[command]

    FROM msdb.dbo.sysjobs SJ INNER JOIN msdb.dbo.sysjobsteps

    ON

    SJ.[job_id] = SJS.[job_id]

    WHERE SJ.[name]='Your Job Name Here'

    check...


    Sujeet Singh

  • RE: SSIS Package protection password

    imranx101 (2/22/2012)


    Hello everyone,

    The developer of SSIS Package whose not available around has password protected some the SSIS Packages that we are using.

    When I try to Export the Package I...


    Sujeet Singh

Viewing 15 posts - 346 through 360 (of 644 total)