Viewing 15 posts - 27,466 through 27,480 (of 39,769 total)
Unless you have a good reason, and understand it, you SHOULD NOT set a production database to simple mode.
The transaction log is essentially a copy of all the work done...
August 10, 2008 at 5:29 pm
I'd also recommend you rewrite this as
select x
from table a
inner join table b
on a.x = b.x
rather than your syntax. It's possible...
August 10, 2008 at 5:25 pm
If you want to install it to test things, you can use a Virtual machine.
August 10, 2008 at 5:23 pm
Sarang has some good advice. You want to determine which files are uploaded and which ones are not, and then programmatically handle the import.
August 10, 2008 at 5:21 pm
You have to write a query that would find duplicates, and then decide (disable or delete) how to handle the duplicates. There's no way for us to know from which...
August 10, 2008 at 5:20 pm
Memory Pressure - http://blogs.msdn.com/slavao/archive/2005/02/19/376714.aspx
I believe SQL Server will take a minimum amount and grow as needed.
August 10, 2008 at 5:19 pm
I think you need to reference the server as well. DTSRun needs to know where the package is. Is it in the file system? In msdb?
August 10, 2008 at 5:18 pm
Any locations you want to work in? You might click the "SQL Jobs" menu item as well.
August 10, 2008 at 5:16 pm
I wouldn't think naming matters at all. Once it's compiled, it's resolved to internal compiled objects.
August 10, 2008 at 5:15 pm
Can you list out which VMs you have and their allocations? What is the size of your physical machine?
There are issues with IOs especially with VMs. There is overhead and...
August 10, 2008 at 5:14 pm
Before consolidating, you need to determine how many resources each of your current SQL Server instances are using. Knowing CPU usage and memory will be important for determining how to...
August 10, 2008 at 5:12 pm
Do you have a backup from SQL Server, or did you stop the service and copy the .ndf at some point?
August 10, 2008 at 5:08 pm
I would limit SQL Server, as Barry mentioned, though I'd make sure you at least give it 1-1.5GB at a minimum.
August 10, 2008 at 5:07 pm
I don't know if you can use the English version on the German instance. I think the functionality is the same, perhaps there will be verbage changes of data.
Do you...
August 10, 2008 at 5:05 pm
Viewing 15 posts - 27,466 through 27,480 (of 39,769 total)