Viewing 15 posts - 11,956 through 11,970 (of 14,953 total)
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...
September 16, 2008 at 7:06 am
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...
September 16, 2008 at 6:54 am
You can use the Pivot function for that.
September 15, 2008 at 1:43 pm
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....
September 15, 2008 at 1:35 pm
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...
September 15, 2008 at 1:31 pm
Dana Bibeault (9/15/2008)
September 15, 2008 at 1:26 pm
Is this a one-time import or something you will be doing over and over again?
September 15, 2008 at 1:23 pm
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?
September 15, 2008 at 1:06 pm
You might be able to if your modifications are in some sort of source control application. Are they?
September 15, 2008 at 11:15 am
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...
September 15, 2008 at 11:12 am
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...
September 15, 2008 at 11:01 am
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...
September 15, 2008 at 10:58 am
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...
September 15, 2008 at 10:52 am
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.
September 15, 2008 at 10:42 am
Cool. Glad you got that working.
September 15, 2008 at 7:07 am
Viewing 15 posts - 11,956 through 11,970 (of 14,953 total)