Forum Replies Created

Viewing 15 posts - 11,956 through 11,970 (of 14,953 total)

  • RE: High Data Volume

    One solution would be to split out the common and standard data, and make those into tables, where the end-user does NOT have access to modify the structure, then add...

  • RE: SP for one record

    Books Online has directions on how to do that, under "declare cursor". Also has samples and examples you can copy.

    I don't know your tables, so I can't give you...

  • RE: How to Convert rows into one column

    You can use the Pivot function for that.

  • RE: Multi Tenency Databases

    Two things to add to that:

    If you decide to go one-per-customer, make sure to set up your model database (system databases) so that it's got everything a new customer needs....

  • RE: Multi Tenency Databases

    Separate databases. Lots of reasons.

    Makes it easy to split it up onto separate servers to scale out.

    When a customer calls you and wants you to restore "their" database to...

  • RE: What Edition of Windows for 8GB+ memory

    Dana Bibeault (9/15/2008)


    Mixing environments has never sat well with me either. We do intend to use SQL Mail (or some better way to get notifications on data loads,...

  • RE: about Bulk Insert

    Is this a one-time import or something you will be doing over and over again?

  • RE: Server Connection

    First, have you checked the settings on your server and made sure it will allow remote connections?

    Second, is the login being used set up correctly?

  • RE: How do I generate DB script at runtime?

    You might be able to if your modifications are in some sort of source control application. Are they?

  • RE: Nested Cursors

    I think I can rewrite that into a set-based solution. To be sure, I need table definitions and some sample data for all the tables in the query.

    That seems...

  • RE: High Data Volume

    Actually, after re-reading your post, I realized you currently have 56-thousand records and might expand up to 500-thousand. I thought you already had 500-thousand. That means you have...

  • RE: High Data Volume

    Basically, what you have is a version of the "one true look-up table". Lots of developers and DBAs have this realization that they can store meta data in one...

  • RE: Advanced SQL Query

    Are the databases on the same server or on different servers?

    If they are on the same server, you need to use a "3-part name" in the query.

    If they are on...

  • RE: SP for one record

    You're going to need to have a cursor step through the rows of your table and call sp_send_dbmail once for each row.

  • RE: Cannot create table where a fields is VARCHAR(8000)

    Cool. Glad you got that working.

Viewing 15 posts - 11,956 through 11,970 (of 14,953 total)