Viewing 15 posts - 571 through 585 (of 2,612 total)
It is going to depend on your specific requirements.
Do you need all of the data from your OLTP database, or just a portion of the data? Is the structure...
October 1, 2008 at 7:00 am
Think of it like physically having a key.
If someone steals your house key, isn't it more secure if they have to steal a second key to get into your office,...
October 1, 2008 at 6:55 am
Here are a few things.
1) If someone happens to get the password for one of the services, it is nice if that does not mean they have the password for...
October 1, 2008 at 6:53 am
Look at the execution plan. It is going to generate loops for the correlated sub-queries you have. MS SQL is not good at looping and this type of...
October 1, 2008 at 6:48 am
- SQL Server includes SSIS - which could be used for this.
- You could create a linked server on your SQL Server to write directly to the access database
- You...
September 30, 2008 at 8:40 am
The package source must be a file connection and the file connection must be to the child package location that is within the same solution.
September 30, 2008 at 7:32 am
Your developers are wrong. This can be done.
You could either create individual calculated measures or create member calculations similar to how the time intelligence wizard handles "Prior Year" type...
September 30, 2008 at 5:21 am
Whatever server login being used must have access to the procedure and the table individually if the procedure is accessing a table in a different database. So, your server...
September 29, 2008 at 12:35 pm
You either need to give the user access to the objects in both databases, or you need to enable cross-database ownership chaining.
September 29, 2008 at 12:23 pm
An OLEDB Command component sends rows to the output buffer as they are processed. So, your deletes happen one at a time and then the rows are sent to...
September 29, 2008 at 12:09 pm
I have had both good an bad experiences with it. Because the bad experiences were things like read/write buffers reporting back incorrectly, I am not comfortable using VMWare for...
September 29, 2008 at 12:02 pm
Actually, that probably makes your problem even worse. You need to ensure you don't violate constraints that are not actually in the database or you may be producing errors...
September 29, 2008 at 10:59 am
Assuming you have foreign key relationships, the top 25 from one table may mean you need every record from another. To add to the issue, you have to add...
September 29, 2008 at 10:33 am
There was an article in the newsletter today that may be of use to you.
September 29, 2008 at 10:31 am
The import/export wizard is probably going to be less efficient than a backup / restore approach.
Depending on your recovery plan, you probably do not need to do a backup -...
September 29, 2008 at 9:59 am
Viewing 15 posts - 571 through 585 (of 2,612 total)