Forum Replies Created

Viewing 15 posts - 46 through 60 (of 190 total)

  • RE: SQL Server Management Studio and SQL Azure

    duda (12/15/2009)


    I'd like to try the produst as it seems to be cool and Nice to have.

    It is pretty cool & nice.. though you need SQL R2 tools as mentioned...

    --
    :hehe:

  • RE: SQL Server Management Studio and SQL Azure

    Jack Corbett (12/10/2009)


    Slick, you need 2008 R2 tools in order to see anything in the object explorer.

    I'm running SQL Server 2008. Shouldn't I be able to see the objects in...

    --
    :hehe:

  • RE: SQL Server Management Studio and SQL Azure

    Hey Steve,

    You're right about not being able to connect through the main logon box and only by clicking on "New Query" and then logging in through the login box that...

    --
    :hehe:

  • RE: SQL Server Management Studio and SQL Azure

    lcee (12/9/2009)


    I'm not sure where the "only works with Vista and Windows Server 2008" statement comes from. SQL Azure connectivity is working fine from my Windows 7 client.

    Yeah..same here... works...

    --
    :hehe:

  • RE: Backup Syntax

    After having used SQL backup by RedGate for so long, I have forgotten the syntax for a simple backup. I usually just script it out from the GUI! 😀 How...

    --
    :hehe:

  • RE: compatibility level

    I've always used the system stored procedure sp_dbcmptlevel for finding out or altering the compatibility levels of our databases. I've used sp_helpdb but wasn't sure it provided the compatibility level...

    --
    :hehe:

  • RE: Using MAX and LTRIM, RTRIM together

    Yes it is. Sorry, was out for the holidays....

    --
    :hehe:

  • RE: Where do I start?????

    mangoale (12/1/2009)


    http://www.w3shools.com is the way to go , this will give basics of how to write queries.

    Totally agree. This is an extremely good site with great explanations. When I was...

    --
    :hehe:

  • RE: SQL email notification

    In your first scripts SELECT statement, I dont see any logic or filters in the WHERE condition where you're telling it to exclude the old data and select new data....

    --
    :hehe:

  • RE: Using MAX and LTRIM, RTRIM together

    yep getting zeroes for 9, 10 and 13

    --
    :hehe:

  • RE: Using MAX and LTRIM, RTRIM together

    I get all zeroes.

    CHARINDEX(CHAR(9), ItemNo, 0)

    Btw.. do I change the 9?

    --
    :hehe:

  • RE: Where do I start?????

    Download SQL Server Express from here and the AdventureWorks database from here and then google SQL Zoo. Also, go to the nearest bookstore and pickup a book on SQL Server....

    --
    :hehe:

  • RE: Export excel sheet to SQL server table

    Microsoft SQL Server Integration Services is mainly used for ETL type tasks. This is typical of an ETL task. Its a very quick and easy package that can be built...

    --
    :hehe:

  • RE: May i use anything else instead of "IN" clause?

    Or if those are the student id's that you need, just put more filters in there using the AND keyword.

    So it would be something like..

    WHERE StudentId IN(1,2,3,4)

    ...

    --
    :hehe:

  • RE: Using MAX and LTRIM, RTRIM together

    Supriya.S (11/24/2009)


    Slick84 (11/24/2009)


    Hello,

    I'm trying to trim the trailing spaces in my column data using below t-sql.

    MAX(LTRIM(RTRIM(column_Name)))

    Addt'l info, I use the max keyword to successfully group my data. Could the max...

    --
    :hehe:

Viewing 15 posts - 46 through 60 (of 190 total)