Viewing 15 posts - 1,771 through 1,785 (of 2,612 total)
You are grouping by the title, not the results of your case statement.
You probably want this (I'm not spending the time to clean up the format):
[font="Courier New"]Select c.ConsultantID,
...
April 23, 2008 at 10:48 am
You need to be more specific about the type of replication, the type of articles you intend to replicate, data types, etc.
The short answer is yes, you can replicate from...
April 23, 2008 at 10:44 am
"SQLServerIsBadDatabase" is being taken as an alias for the table name.
April 23, 2008 at 10:39 am
Don't over-index your table.
You have a lot of writes happening and every insert or update has to update the appropriate indexes. You will also get fragmentation on indexes pretty...
April 23, 2008 at 9:57 am
You need to configure logging and get the entire error messages. Everything you need is being covered up by the elipsis (...) areas of what you posted.
I would guess...
April 23, 2008 at 9:52 am
Right-click in an empty area of your control flow and select "Logging" from the context menu.
You can configure your package to log to a number of different sources, but logging...
April 23, 2008 at 9:49 am
That is basically what Service Broker would do - without writing the code to manage the queues on both ends.
April 23, 2008 at 7:03 am
What you are describing is what merge replication was designed for. It does, however, present some interesting issues. If you have the ability to modify schema, you may...
April 23, 2008 at 6:21 am
Did you set the server in the project properties? Is it the correct Analysis Services instance? Can you connect to the AS instance through management studio?
The error is...
April 23, 2008 at 6:06 am
You may want to use the RECOMPILE keyword. If the first time you run the procedure it is with the 'All' value, the execution plan could get stuck with...
April 22, 2008 at 1:14 pm
You have a lot more to look at before you will be able to make a decision, but my first impression is that transactional replication is probably not going to...
April 22, 2008 at 1:05 pm
I have moved lots of data between Oracle servers, and some data (1-2gb per night) from pretty old Sybase databases to SQL Servers.
SSIS will devour bandwidth as needed. No...
April 22, 2008 at 12:44 pm
Nope.
But if this is just because you are lazy, right-click on the table in management studio and generate an insert script.
April 22, 2008 at 12:35 pm
The SP could be it, but I will assume you are using sp2 everywhere.
I would start with it being a permissions issue. Does the account executing the package (your...
April 22, 2008 at 12:06 pm
You either did not add a grid to the report, or you added a grid and suppressed the detail rows.
April 22, 2008 at 10:44 am
Viewing 15 posts - 1,771 through 1,785 (of 2,612 total)