Forum Replies Created

Viewing 15 posts - 6,451 through 6,465 (of 15,381 total)

  • RE: Reverse Engineering Tool

    ericwenger1 (10/21/2013)


    Can I get some recommendations on some Database Reverse Engineering Tools?

    Thanks in advance!

    What are you trying to reverse engineer? Are you trying to get a database model or...

  • RE: Divide By Zero error when I use a case statement

    dndaughtery (10/21/2013)


    That worked, thanks

    Which one?

  • RE: Need Help

    derekmcdonnell3 (10/21/2013)


    when trying to export my test data, I am using the procedures from your signiture line, yet i am recieving some of the values as null, instead of the...

  • RE: Need Help

    Hi and welcome to the forums. In order to help we will need a few things:

    1. Sample DDL in the form of CREATE TABLE statements

    2. Sample data in the form...

  • RE: Best way to DELETE and archive the data

    Nagaram (10/21/2013)


    No where SomeCondition..

    need to delete all the records without logging the individual row deletions in tranasaction log

    Easy enough to remove the condition.

    You can't avoid row deletes being logged. That...

  • RE: Divide By Zero error when I use a case statement

    You are mixing up your aggregates and scalar values. You are trying to use a case expression to control the whole column. This doesn't work at all. It is awfully...

  • RE: Best way to DELETE and archive the data

    Nagaram (10/21/2013)


    Hi Experts,

    Looking for best way to archive and delete the exsting data from one table in the business hours.

    We have one log table , An application is inserting the...

  • RE: new table DDL,

    mario17 (10/21/2013)


    Hi,

    This is kind of my first DDL table, so just want to check with all gurus, it has some cust definition and totals like below:

    Cust_Category | ...

  • RE: handling null or empty values useing update statement in sql server

    Please don't post multiple threads for the same thing. See the original thread here. http://www.sqlservercentral.com/Forums/Topic1506273-391-1.aspx

  • RE: Tip: Calculated Table Truncate

    simonholzman 14059 (10/19/2013)


    However, although TRUNCATE is much faster and does not log the changes, it does not normally allow any data to be kept.

    This is not true. TRUNCATE is a...

  • RE: finding hierarchy info

    Hi and welcome to the forums. In order to help we will need a few things:

    1. Sample DDL in the form of CREATE TABLE statements

    2. Sample data in the form...

  • RE: Variable select query

    kennethrbell (10/18/2013)


    Is there always one more question?

    Mine is, "is there a way to have the total count display as well?" In other words, is this row a "10" a...

  • RE: CURSOR and TABLE

    patrickmcginnis59 10839 (10/18/2013)


    T.Ashish (10/1/2013)


    Hi all,

    I consider CURSOR and TABLE as data types but some one has argued that these are database objects.

    Can you please share your views on the same...

  • RE: Variable select query

    kennethrbell (10/18/2013)


    Thanks Sean. I'll test it later when I get home. I was trying to use a variable, but I can see how this would work.

    You're welcome. Please post back...

  • RE: Variable select query

    Pretty sparse on details here but I think you could do something like this. I'm not so sure about the "simple" part but it should work.

    select * from

    (

    Select *

    , case...

Viewing 15 posts - 6,451 through 6,465 (of 15,381 total)