Forum Replies Created

Viewing 15 posts - 676 through 690 (of 1,124 total)

  • RE: Installing SQL Server 2005 Management Studio on a client

    You have to install "Management Components"....

    In component selection, you have to select the component "Workstation Components, Books Online, and Development Tools" and from the advance option selection, you have to...

    --Ramesh


  • RE: Select from String

    Just a little modification in the query....

    Note:

    This code assumes that there exists values "Funder" & "Industry" in the column. Otherwise, you have to manually handle those exceptions by filtering...

    --Ramesh


  • RE: INSERT TRIGGER

    I think you have to remove the additional condition in WHERE clause....

    CREATE TRIGGER Insert_ApprovedDate

    ON Request FOR INSERT

    AS

    Update r

    Set dateApproved = getdate()

    From Request...

    --Ramesh


  • RE: Hello and I need help to create a user

    david (1/14/2009)


    What is the closest I can get? And what will the user not be able to with these permissions?

    Tx btw 😉

    Its not about how close you can get, its...

    --Ramesh


  • RE: I want to get Distinct Values From Table

    Other way around is to split delimited values to rows and then take distinct of those values.

    Jeff had written a nice article about using tally table to split delimited string...

    --Ramesh


  • RE: How to suppress labels of a category group in a chart

    I am glad I could help you...:)

    --Ramesh


  • RE: Detach a remote database from a server

    There are many ways to transfer a database from one server to another...

    1. Backup/Restore Method (recommended)

    2. Transfer Database Task in SSIS

    3. Copy Database Wizard

    4. Using SMO Objects

    I personally don't...

    --Ramesh


  • RE: Calling a UDF from a check constraint

    I think there must be something wrong with the data. I could have helped you a bit more if you provide some more information about the table structure and...

    --Ramesh


  • RE: How to suppress labels of a category group in a chart

    Have you checked by setting the "Label" property in "Chart Properties > Data > Category Groups > Group B > Edit .. > General > Label:" ?

    --Ramesh


  • RE: Hello and I need help to create a user

    Well, I don't think so one can enforce the said rules/permissions in a simple manner. If you want to strictly enforce those then I guess the only option left...

    --Ramesh


  • RE: cross tab

    Jeff Moden (1/14/2009)


    Ramesh (1/14/2009)


    Jeff Moden (1/14/2009)


    Never mind... not enough coffee... I see it. And, I agree with Seth... unless you have some additional information, this is definitely not the...

    --Ramesh


  • RE: cross tab

    Jeff Moden (1/14/2009)


    Never mind... not enough coffee... I see it. And, I agree with Seth... unless you have some additional information, this is definitely not the way I'd output...

    --Ramesh


  • RE: How to Convert nx1 dimension table to 1x1 dimension table

    There are many articles on this forum about concatenating strings.

    Here is an excellent article by Jeff Moden on it

    http://www.sqlservercentral.com/articles/Test+Data/61572/%5B/url%5D

    --Ramesh


  • RE: multiple joins necessary or redundant for distinct aggregates?

    You have not provided enough information to help you. If you want a better and a quick solution, help us by providing table structures in form of DDL, sample...

    --Ramesh


  • RE: ORDER BY

    Philip Horan (1/13/2009)


    When in fact the last 5 orders appear in the middle?

    WO014563

    WO014377

    WO014378

    WO014440

    WO014268

    How could you tell that these are the last 5 orders?

    Will it be possible to return the last...

    --Ramesh


Viewing 15 posts - 676 through 690 (of 1,124 total)