Forum Replies Created

Viewing 15 posts - 10,636 through 10,650 (of 15,374 total)

  • RE: Retrieve Number based on Indexkey

    ssskumar4u (9/21/2012)


    Hi,

    I have updated my problem statement as per given guidelines. Hope it is fine now.

    Thanks

    I totally agree with Eugene. I thought I might have a go at it just...

  • RE: how to make full text search for a tables?

    I will try one more time. Post some ddl (create table scripts) and sample data (insert statements). Incomplete sentence fragments and disjointed explanations will not generate much activity. I suspect...

  • RE: Adding missing dates

    There are a few ways to do this. I see that you are new around here and don't know about posting ddl (create table scripts) and sample data (insert statements)...

  • RE: Operand data type varchar is invalid for divide operator.

    jwillbanks (9/20/2012)


    I imported these tables, but I'm not sure how to get this information

    Take a look at the first link in my signature about best practices.

    I am going to...

  • RE: Cursor Help

    Lynn Pettis (9/20/2012)


    Okay, a non-cursor way to accomplish this same task:

    declare @SQLCmd varchar(max);

    select @SQLCmd = (select 'exec insert_sp ' + cast(md.sid as varchar) + ';' + char(13) + char(10)

    ...

  • RE: Cursor Help

    manub22 (9/20/2012)


    Sean Lange (9/20/2012)


    Yes it is true that sometimes you can't the code and that is exactly why I said he may be stuck with it. I would vehemently disagree...

  • RE: Cursor Help

    manub22 (9/20/2012)


    @sean-2, Cursors were never on bad performance, its upto you when and how you use them. Some developers use them very early rather than creating complex set based queries,...

  • RE: Creating Trigger To Update Total On 'Parent' Table

    F8R (9/20/2012)


    Thank you for all hint and sugestion, I think I need to unlearn my 'old' knowledge, :D.

    I'm new to Sql Server and honestly, I'm not very good at Database...

  • RE: Cursor Help

    rocky_498 (9/20/2012)


    Once again thanks and i understand what you saying, Here is the PROBLEM.

    I can't convert or paste my store procedure here (8 Pages S.P) lot of logic involve....

    If i...

  • RE: Question on ACID properties

    The other possible query I can think of is SELECT INTO. This wont guarantee Atomicity and Consistency as the INTO table might still be created even if the transaction was...

  • RE: Cursor Help

    rocky_498 (9/20/2012)


    Hi guys thank you for your reply, I created below CURSOR and its work fine,

    DECLARE @sidint

    Declare InsertSID Cursor For

    Select DISTINCT Sid from MDB

    where ADate = dateadd(day,datediff(day,1,GETDATE()),0)

    ...

  • RE: How SQL Server recognise if u run full backup

    Simha24 (9/20/2012)


    I would like to know answer for this Question

    How SQL Server recognise if u run full backup ?

    I tried to get answer for this question but :crazy:

    I am not...

  • RE: Cursor Help

    Cursors are notoriously bad for performance and should be avoided except for maintenance tasks if at all possible. I suspect you don't need a cursor for this at all. If...

  • RE: how to make full text search for a tables?

    Can you try to explain a bit more clearly what you are trying to do? Take a look at the first link in my signature about best practices.

  • RE: help with a query

    erics44 (9/20/2012)


    Luis Cazares (9/20/2012)


    At this moment, I wish I didn't post any response.

    Your answers have been rude to someone that is trying to help you by giving a good advise.

    This...

Viewing 15 posts - 10,636 through 10,650 (of 15,374 total)