Forum Replies Created

Viewing 15 posts - 4,201 through 4,215 (of 15,381 total)

  • RE: I need to Update a column with AutoNumber

    CherrySqlserver (7/7/2014)


    Hi,

    I need to update a column with AutoNumber which is depending on some other column.

    the output sud be like following..

    Obj1Obj2

    0001ijk-000

    0001ijk-000

    0001ijk-000

    0001ijk-000

    0001ijk-000

    0002ijk-001

    0002ijk-001

    0002ijk-001

    0002ijk-001

    i want to Update The column Obj2 based on the...

  • RE: cluster

    ramyours2003 (7/5/2014)


    how to install active\active cluster in sql2008?

    Have you tried google? Typing in your EXACT question returns a ton of results to articles that explain this.

  • RE: validating cluster

    ramyours2003 (7/5/2014)


    after installing sql on cluster what are the different approaches to validate to check whether the clustering is working fine or not?

    Given that you posted another question...

  • RE: Calculating percentages within same scope

    michielbijnen (7/5/2014)


    Unfortunately I am not able to attach the 2 images properly in my reply ...

    I used the image shortcut with an absolute URL to my local system using syntax...

  • RE: Report Non-existant child rows

    Something like this.

    select m.parcel, isnull(SUM(v.Value), 0)

    from @m m

    left join @v v on m.parcel = v.parcel

    group by m.parcel

    having ISNULL(sum(v.Value), 0) = 0

    order by m.parcel

  • RE: Replace a Cursor

    Lynn Pettis (7/3/2014)


    Eugene Elutin (7/3/2014)


    Yes, you could write the code so that it creates a single dynamic sql based code set that would import the data from the tables all...

  • RE: Order of IN operator

    atultiwari.eng06 (7/3/2014)


    select empid from consumer where empid in (2323,1236,5623)

    I want result would be of same order as i put in IN operator.see output

    Output

    empid

    2323

    1236

    5623

    Is this possible???

    Not without having another column...

  • RE: Locks on a table

    cas001s (7/3/2014)


    Hi,I need help regarding my issue.

    We are using a application which is used by multiple users simultaneously.Using this application,different users are going to get the information from same database...

  • RE: Counting Decimal Places in a float field

    hughesj23 (7/3/2014)


    Thank you Sean! I like that one the best. I could wrap my mind around that one a little easier and it works great. I appreciate...

  • RE: Counting Decimal Places in a float field

    A little late to the party since Eugene already posted a workable solution. But since I came up with another way of doing this I figured I would post it....

  • RE: Backup Database is terminated Abnormally Failed on SQL Server 2014 RTM

    Did you look in the error logs? It will usually have some more detailed information about what the problem is.

  • RE: timeout period elapsed prior to completion.

    It might not show up in long running queries either. This is a result of a query that ran longer than the timeout that was established in the connection. The...

  • RE: Replace a Cursor

    James Hammond (7/2/2014)


    The only other issue that I'm aware of is if there is any possibility of SQL injection via the Company.Name field. I'm not sure how to secure these...

  • RE: Generate column numbers using dynamic SQL and pivot command

    sifar786 (7/2/2014)


    Also, wanted to ask you, does SQL Server handle more than 255 columns? If so, what is the limit?

    http://msdn.microsoft.com/en-us/library/ms143432.aspx

  • RE: Replace a Cursor

    ksrikanth77 (7/2/2014)


    Hi All

    Could anyone help me on getting the below Cursor query convert to a Recursive CTE or with a while loop as I do not want to use a...

Viewing 15 posts - 4,201 through 4,215 (of 15,381 total)