Forum Replies Created

Viewing 15 posts - 106 through 120 (of 153 total)

  • RE: SELECT statement hangs on certain where conditions

    Please provide your select query.........

    "Don't limit your challenges, challenge your limits"

  • RE: Which certification?

    Thank you all,

    I have decided to do MCTS for SQL Server 2008.

    Kindly let me know if there is any fine study material or site .

    "Don't limit your challenges, challenge your limits"

  • RE: can any one help me out??

    You can create a same table in Database7, and a before update trigger on tableA (in every database, if the filed is not updated in all tables at the same...

    "Don't limit your challenges, challenge your limits"

  • RE: Which certification?

    Hi All,

    Thanks for you valuable advice. I have visited this link: http://www.microsoft.com/learning/mcp/certifications.mspx

    And according to that, if i want to have certificate in 2005, then i need to apply...

    "Don't limit your challenges, challenge your limits"

  • RE: SQL Server 2008 Express - error starting SQL Services

    Actually the installation order effects a lot. You need to install

    1) IIS 7

    2) .NET framework 3.5

    3) SQL Server 2008

    4) Visual Studio 2008

    Please check your installation order (also check your version...

    "Don't limit your challenges, challenge your limits"

  • RE: Which certification?

    Yes champion(Steve), you are right! But that's my confusion point.

    Actually, I have experience in SQL Server 2005 as we are using it (earlier we were using 2000). But now we...

    "Don't limit your challenges, challenge your limits"

  • RE: Which certification?

    Sorry, it was my mistake... 🙂

    I am software developer and having experience in SQL Server for more than3 years. Now, i wanted to have certification in sql.

    "Don't limit your challenges, challenge your limits"

  • RE: Use of GO

    Yes Jack,

    I am also feeling something missing in code!

    @arup_kc

    can you flash some more lights on this topic? Pls provide some more details..

    I m really very eager to know abt it...

    "Don't limit your challenges, challenge your limits"

  • RE: Use of GO

    Ok. so pointer is again come to first question of this post.

    Why it is giving error in his execution?

    "Don't limit your challenges, challenge your limits"

  • RE: Use of GO

    @VIJAYA

    GO is not a Transact-SQL statement; it is a command recognized by the sqlcmd and osql utilities and SQL Server Management Studio Code editor.

    SQL Server utilities interpret GO...

    "Don't limit your challenges, challenge your limits"

  • RE: Conditional Where or Having Clause

    ohh it was totaly my mistake... pardon for that.. 😀

    the code is working... 🙂

    "Don't limit your challenges, challenge your limits"

  • RE: sql 2005 bug or configuration issue?

    Is this because INT is 32-bit signed integer and BIGINT is 64-bit signed integer..?

    INTEGER: The JDBC INTEGER type represents a signed 32-bit integer. This maps to a SQL Server int...

    "Don't limit your challenges, challenge your limits"

  • RE: Conditional Where or Having Clause

    Will this work?

    declare @sample table (Status varchar(10), State varchar(20), Name Varchar(10))

    insert into @sample

    select 'Pending', 'Nebraska', 'ABC' union all

    select 'Pending', NULL, 'XYZ' union all

    select 'Active', NULL, 'PQR'

    select *

    from @sample

    where state...

    "Don't limit your challenges, challenge your limits"

  • RE: Use of GO

    In sql server 'Go' will apart all statment in a single execution into multiple batches. The batch till first Go statement will execute first, and till second Go statement will...

    "Don't limit your challenges, challenge your limits"

  • RE: Knowledge sharing: Date conversion according to TimeZone

    Hi all,

    sorry for the delay in reply...

    by "multi languague" mean - I have many applications if different languagues, some are not using any .NET frame work.. but most of...

    "Don't limit your challenges, challenge your limits"

Viewing 15 posts - 106 through 120 (of 153 total)