Forum Replies Created

Viewing 15 posts - 376 through 390 (of 396 total)

  • RE: Bugs in Enterprise Manager for Numeric?

    Microsoft SQL Server 2000 - 8.00.194 (Intel X86) Aug 6 2000 00:57:48 Copyright (c) 1988-2000 Microsoft Corporation Personal Edition on Windows NT 5.1...

    https://dbfriend.blogspot.com/

  • RE: Bugs in Enterprise Manager for Numeric?

    Yes I tried in Enter prise manager

    https://dbfriend.blogspot.com/

  • RE: Bugs in Enterprise Manager for Numeric?

    I insert this

    INSERT INTO TESTTBL(MYID, MSG)

    VALUES (1, 110)

    it works fine!!!

    https://dbfriend.blogspot.com/

  • RE: Find Min/Max Values in a Set

    Thankx for the comments. Which help me a lot.

    This my first article in this forum. from a single article I learnt a lot

    Thankx every body.

    https://dbfriend.blogspot.com/

  • RE: Find Min/Max Values in a Set

    I accept UR opininon

    But the question is whether to have index on this type of field.

    Say,Are we going to add an index to Qty field

    https://dbfriend.blogspot.com/

  • RE: Use comment in Access Query

    Ok thanks every body

    https://dbfriend.blogspot.com/

  • RE: Use comment in Access Query

    in SQL View

    I want to run this query

    Select * from Table1

    -- Where a= 1

    Where a= 1 is the commented line

    https://dbfriend.blogspot.com/

  • RE: DateTime Conversion Between Time Zones

    http://www.devx.com/tips/Tip/17668

    https://dbfriend.blogspot.com/

  • RE: RowNum Function in SQLServer

    Thank You Both guys

    https://dbfriend.blogspot.com/

  • RE: Case Problem

    Yes Bcos We are saving multi bite charctors

    So we need field to be in nvarchar

    https://dbfriend.blogspot.com/

  • RE: Case Problem

    Do u know any similar function for access

    https://dbfriend.blogspot.com/

  • RE: Case Problem

    Great!!!

    My field is nvarchar

    Select [Description]

    From alarmLogic

    where

    Convert(Binary,Convert(varchar, [Description]))= Convert(Binary, 'below')

    is working for me

    Thankx

    https://dbfriend.blogspot.com/

  • RE: Case Problem

    Actully solution should be valid for any no of charators

    'a' is an example it can have more charactors

    User is entering the value which he want to select

    depending on that value...

    https://dbfriend.blogspot.com/

  • RE: Table Name as SP Parameter

    CREATE PROCEDURE [dbo].[FindANDReplaceString]

    @Tablename varchar(20),

    @FieldName varchar(20),

    @FindString varchar(30),

    @RepalceString varchar(30)

    AS

    /*'Select * From Tablename*/

    declare @sqlstring varchar(8000)

    Select @sqlstring = "Update " + @Tablename + " Set " +...

    https://dbfriend.blogspot.com/

  • RE: Table Name as SP Parameter

    CREATE PROCEDURE [dbo].[FindANDReplaceString]

    @Tablename varchar(20),

    @FieldName varchar(20),

    @FindString varchar(30),

    @RepalceString varchar(30)

    AS

    /*'Select * From Tablename*/

    Update @Tablename Set @FieldName = Replace(@FieldName,@FindString,@RepalceString)

    GO

    Above SP @Tablename ,@FieldName are in correct.Can any body...

    https://dbfriend.blogspot.com/

Viewing 15 posts - 376 through 390 (of 396 total)