Forum Replies Created

Viewing 15 posts - 451 through 465 (of 1,109 total)

  • RE: Sql Server For Linux

    zaher_akram (2/11/2008)


    Hi

    Is there any Version Of sql server that i can run on Linux . Or any third party tool that can make it possible to run...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Narrow down the recordset

    alorenzini (2/8/2008)


    I adapted your query and it looks like this:

    SELECT ConsultantID

    , Level

    , Title

    ...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Narrow down the recordset

    You could use the row_number() function, so in this case you would number the promotions for a particular person to a particular level, and ignore the first promotion to this...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Is there a way to do the following:

    You may want to look at the thread: http://www.sqlservercentral.com/Forums/Topic438574-360-1.aspx

    Although it does not give you a way to find out the queries that the suggested missing indexes are based on, it...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Get table name from column name........

    JMSM (2/8/2008)


    Hi,

    ...

    One other question, how can i send the output of one date in the following format (DD/MM/YYYY)? :sick:

    Thanks and regards

    JMSM

    Concerning your second question, you can use the style...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Get table name from column name........

    JMSM (2/8/2008)


    Hi,

    Can you tell me how can i get table(s) name from one column name that give me to put in a query?

    The point is:

    - They...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Grant.... with admin option..... (xp_cmdshell)

    You can enable not sysadmin users to run xp_cmdshell by setting up a proxy account See: http://technet.microsoft.com/en-us/library/ms175046.aspx

    Permission wise it will need CONTROL SERVER, so if this is not acceptable, you...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Im confused - T-SQL

    The primary key will use a clustered index, your temptable will most likely be only a heap.

    Also, are you the only one accessing the table you are inserting data...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Permissions for SPs to be created

    sayan ghosh (2/5/2008)


    Hi Everybody,

    We have to give CREATE, ALTER and EXEC permissions for only the SPs that needs to be created for a particular DB.

    It's like we've got a...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: How do I do reindexing & defragmentation of my database

    mjafar (2/5/2008)


    Nowadays my database is running very slow.

    So I have decided to do re indexing & defragmentation.

    I have did shrinking of database.

    Here first time I am doing...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: How do I do reindexing & defragmentation of my database

    mjafar (2/5/2008)


    Nowadays my database is running very slow.

    So I have decided to do re indexing & defragmentation.

    I have did shrinking of database.

    Here first time I am doing...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: Query to generate a comma separated field

    rosemary (2/5/2008)


    I have a requirement where for a given student I need to generate a comma separated field of the courses he/she is taking.

    Input

    Data ...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: How do I Encrypt a trigger in SQL Server 2000

    Wayne Benhart (2/1/2008)


    Can anyone help me on how to Encrypt a trigger and possibly give me an example code on how to do it?

    Thank you

    Wayne

    You could just use the "WITH...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: How to Select all rows starting with numbers and spl chars

    poztme (2/1/2008)


    sorry andras

    my mistake. I didnt notice the second query though

    Cheers

    -Jag

    Not your fault, I've added it later (the title of your post was truncated so I did not see the...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

  • RE: How to Select all rows starting with numbers and spl chars

    Use the LIKE keyword:

    select [Shop Name] from mytable where [Shop Name] like '[0-9]%'

    for numbers, or

    select [Shop Name] from mytable where [Shop Name] like '[^a-zA-Z]%'

    for ones that do not start with...


    Andras Belokosztolszki, MCPD, PhD
    GoldenGate Software

Viewing 15 posts - 451 through 465 (of 1,109 total)