Forum Replies Created

Viewing 15 posts - 16 through 30 (of 39 total)

  • RE: How do i drop identity for a Column

    Koen Verbeeck (4/13/2012)


    patelmohamad (4/13/2012)

    Agree with you koen but the column indexing will be lost in it and in my next step i have used the same statement but with where...

  • RE: How do i drop identity for a Column

    Koen Verbeeck (4/13/2012)


    patelmohamad (4/13/2012)


    Please read my question then suggest some better solution,

    I did read the question. Do you think I randomly type stuff in forum topics?

    I did have to guess...

  • RE: How do i drop identity for a Column

    Koen Verbeeck (4/13/2012)


    Drop the identity column and add a simple integer column with the same name.

    Hi Koen,

    Please read my question then suggest some better solution,

    before posting My question on Sqlservercenteral.com...

  • RE: Need help on User define Function

    Hi Sean,

    this the Actual function which has been used in many procedures and in functions,

    the use of the "GetDeviceLogData_SpecifiedTime" is depend upon procedures

    i need Latitude,Longitude. and in some...

  • RE: Need help on User define Function

    Hi sean,

    the UDF which i have created is

    Table1 is the Clone copy of Table2 for fast process we are transfering the data from table2 to table1

    hope you understand the...

  • RE: Need help on User define Function

    Hi,

    I have done some calculation internally which is required... but that calculation has to been done each and every time i calls the procedures or write any other..

    is it good...

  • RE: Run the script for each database

    BEGIN

    SET NOCOUNT ON

    DECLARE

    @RowIndex INT

    ,@RowCount INT

    ,@Name VARCHAR(300)

    ,@SQLQuery VARCHAR(MAX)

    IF NOT OBJECT_ID('tempdb..#tempCheckDatabase') IS NULL

    BEGIN

    DROP TABLE #tempCheckDatabase

    END

    SELECT

    Identity(INT ,1 ,1) AS RowID

    ,NAME AS DBName INTO #tempCheckDatabase

    FROM sys.databases WITH (NOLOCK)

    SELECT

    @RowCount...

  • RE: Table Column Header Visible false

    Hi guys,

    I found the solution

    it's in Options "Results in TEXT" Just uncheck the "Include column headers in result set"

    Thanks

  • RE: SELECT * Into #tempTable

    Thanks guys

    and Gianluca thank you once again for posting a article of Kalen Delaney

    it gives the details of the Temptable

  • RE: DataType Table or TempTable Which is Best?

    Thanks Gianluca Sartori

  • RE: What to Use Select or Set to Assign the values to Variable?

    Thanks guys for your precious suggestion

  • RE: Where the Data is Stored if Select query executed before placing to Grid?

    Hi Sean,

    Agree with you but in Asp.Net application we holds the data in DataTable,List or Dataset Basically the Data holder and then display in grid, my question is same for...

  • RE: IF Exists(Query)

    Hi Sean,

    Thanks for your valuable suggestion, and i have implemented and search other things and discovered

    Please have a look and suggest if i am missing something...

    SET NOCOUNT ON;

    DECLARE...

  • RE: IF Exists(Query)

    Thanks sean,

    Agree with you,

    my solution is little bit slow... but my question is to search a respective data in any of the column of the database tables.

    Hope i...

  • RE: IF Exists(Query)

    hope you will get my point

Viewing 15 posts - 16 through 30 (of 39 total)