Forum Replies Created

Viewing 14 posts - 271 through 284 (of 284 total)

  • RE: SSQL PROCEDURE

    The nice thing about a SQL Server stored proc is that it doesn't bomb off when this type of failure occurs. You can check the @@ERROR value, if it's...

  • RE: One Big Database vs Many Smaller Databases

    Splitting your data base into multiple data bases is usually driven by security reasons. If you have tables that are shared, splitting them into multiple data bases will only...

  • RE: DTS or BCP or ???

    This is a common task that many people face and it's too bad there's not better support for it from Mi¢ro$oft. What we typically do is this: create...

  • RE: Oracle to SQL Server 2000 migration

    From 1st hand: we took the create a linked server and query over approach. Oracle has a nice provider and the transfer was almost seamless. using alinked server,...

  • RE: Is certification really valued

    It comes down to a company by company basis. In my experience, studying for certifications (MCSE, MCSD and MCDBA) has taught me things I didn't know and helped me...

  • RE: How to store Images (.jpg, .bmp) in DB?

    There is always a way to avoid storing external files in a data base table. I would avoid doing this at all costs.

    If you insist, use a varbinary field...

  • RE: Dynamic Parameter in SP

    You need to be aware that having multiple statements that are executed differently based on conditional logic generates the cached execution plan based on the 1st call to the proc....

  • RE: Table variable or Temparary table (tempdb)

    Like most everything, it depends. We use table valued user-defined functions instead of views for a lot of things. This makes for better performance in almost every case...

  • RE: Help with distinct lines

    We recently did the same thing but took a slightly unusual approach. We created a table valued user-defined function that basically did the select distinct() function portion, then joined...

  • RE: Can a Trigger Update another database?

    quote:


    I'm trying to teach myself how to write triggers. I understand the basics, but my boss wants me to figure out...

  • RE: Script for column usage

    quote:


    Does anyone have a script that will tell you how a column is used in an application?


    December 3, 2002 at 7:41 pm

    #442977

  • RE: Array setup "worth the trouble"?

    As long as you have hardware raid so the device looks like a single drive to the OS, you can install anything anywhere. The restriction about installing the OS...

  • RE: How to determine if a table has indices

    quote:


    "Paul, do you know any way to determine from the sys* tables whether or not a table has indices? 


  • RE: Table backup

    quote:


    People: I need to backup a big table, because i will to add some columns. How can i make a backup of...

Viewing 14 posts - 271 through 284 (of 284 total)