Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)

  • RE: A Brief History of SQL

    nice article but something is missing:

    From Wikipedia, the free encyclopedia.

    "Sybase SQL Server" was the name of Sybase Corporation's relational...

  • RE: Dynamically Build Order By

    If you execute sql you can do whatever combinations you need:

    CREATE PROCEDURE sproc_getAllForumThreads

    @SortBy nvarchar(255),

    @OrderType bit

    AS

    DECLARE @Order varchar(4), @sql varchar(1000)

    IF @OrderType = 0

    BEGIN

    SET @Order = 'ASC'

    END

    ELSE

    BEGIN

    SET @Order = 'DESC'

    END

    SET @sql = 'SELECT Name,...

  • RE: MCDBA tests

    MS Press had books series called "Readiness Review" I pass 70-210 and 70-215 in one day and 80% of questions was absolutely indentical to "Readiness Review" books I have. And...

Viewing 3 posts - 1 through 3 (of 3 total)