Viewing 15 posts - 391 through 405 (of 2,612 total)
'I:\MSSQL\DATA\Cypress_APP_Data.MDF' is the path for the data file on "Server A" you have to specify WITH MOVE in your restore.
If you are using the Management Studio dialog, you have to...
November 21, 2008 at 8:56 am
Is the clustered index in the order the data is being inserted?
If it is not, your inserts will continuously fragment your index because they will need to put data in...
November 21, 2008 at 8:34 am
You are correct in that you lose the benefit if the SAN admin is carving three partitions out of a LUN that is using the same physical drive array.
Of course,...
November 21, 2008 at 8:28 am
Yes, there is a UNION ALL component that will merget together two identical data streams.
Unfortunately, this is just as likely to hurt performance as it is to help, but you...
November 21, 2008 at 7:39 am
Replication will synchronize two databases.
For a mobile device, I assume you are using the compact edition of SQL running on the mobile device and that it will not be continuously...
November 21, 2008 at 7:03 am
You could verify it is a permissions issue by logging into the server using the SQL Agent account and trying to run the package through BIDS.
If it is, a proxy...
November 21, 2008 at 6:08 am
Transactional replication does not just re-apply T-SQL statements, it inserts, updates, and deletes records based on activity on these records. Yes, it gets this information from the transaction log,...
November 21, 2008 at 5:10 am
I have been running that configuration for a year now.
Make sure Management Studio and Visual Studio 2005 are already installed before installing Visual Studio 2008. The installs all work...
November 21, 2008 at 5:01 am
No.
You could put a synchronous component after it - like a sort.
Be careful you don't create a memory issue.
November 21, 2008 at 4:58 am
The Pervasive OLEDB driver needs to be a 64 bit driver. Make sure it is and that the 64 bit driver is correctly installed. Also make sure your...
November 21, 2008 at 4:53 am
I would code the logic into the ETL Package (I am assuming SSIS). It is pretty easy to specify not to run if the current day of the month...
November 20, 2008 at 12:21 pm
This is handled in SSIS through "Package Configurations". They can be configured through the SSIS menu in BIDS. Look them up in Books Online and post again if...
November 20, 2008 at 8:52 am
Earlier, you said there was no limit to the number of rows, not the number of columns.
With no limit to the number of columns, the only T-SQL solution will be...
November 20, 2008 at 6:33 am
There just really needs to be a limit to the number of columns. Pivot will probably not work for you, but this can be done relatively easy.
Here is what...
November 20, 2008 at 5:14 am
You have posted limited information, but there are a couple of things to try.
First, when you re-displayed the data, was it using the same connection, or a different connection? ...
November 20, 2008 at 5:07 am
Viewing 15 posts - 391 through 405 (of 2,612 total)