Viewing 15 posts - 16 through 30 (of 133 total)
Go into SQL Server Network Utility, click TCP/IP and click properties- here you can set the port number.
July 20, 2010 at 9:52 pm
Is there potentially any database maintenance causing this (using the tempdb for sorting etc)?
July 20, 2010 at 9:46 pm
You could run a tool like SQLIO that can benchmark the read/write performance of the drives (before moving) to see if it can achieve faster IO.
July 16, 2010 at 9:30 pm
Are the data and log devices configured with the same RAID configuration?
I can't see it making a big difference- but it could if the log device is on a LUN...
July 16, 2010 at 9:27 pm
The only thing I can think of is if you have some legacy connections using SQL logins that will need to be stored.
You can look at some software solutions...
July 12, 2010 at 12:44 am
You can look at the database mirroring monitor, or run this query (and ensure all mirroring databases are SYNCHRONIZED):
select * from sys.database_mirroring
where database_id > 4
and mirroring_state NOT like '%NULL%'
July 12, 2010 at 12:39 am
You need to use the Oracle driver (rather than msdaora- Microsoft's OLEDB provider)
July 10, 2010 at 9:47 pm
From I have heard from Microsoft- if the issue is a SQL Server issue, they will support you as normal. If they believe the issue is caused by the virtualization...
July 8, 2010 at 9:36 pm
As long as you are running Hyper V or have a solution certified by server virtualization validation Program (such as VMWare common configurations if I remember correctly)- you are supported...
July 8, 2010 at 9:33 pm
Be careful with this- when we moved one of our SQL 2005 servers from 32 to 64 bit, we noticed that the Microsoft Oracle driver is not supported and you...
July 8, 2010 at 9:27 pm
Are you running automated Windows patch management (such as WSUS)? Depending on your settings, if it can't patch SQL Server successfully- it stops services.
July 8, 2010 at 9:18 pm
You essentially need to re-install SQL Server to change the server collation. You will need to backup all databases that need to be retained.
Here is a command that worked for...
July 8, 2010 at 9:14 pm
Why not just set it up manually in SSIS? It will probably be faster if it's only a simple package...
July 6, 2010 at 4:10 am
You can click properties in Management Studio, click Connections and under remote server connections, check 'Allow remote connections to this server'
Is this what you mean?
June 28, 2010 at 9:26 pm
Viewing 15 posts - 16 through 30 (of 133 total)