Viewing 15 posts - 151 through 165 (of 283 total)
These kind of questions are designed to get an idea of how much experience you have with using the product. Everyone's experience will be different so there is no...
June 30, 2009 at 1:41 am
Looks like you have two 2005 instances installed, both of which are SQLExpress. Then you have the SQLExpress tools installed for 2005 and 2008. If you were...
June 28, 2009 at 2:32 am
The backups are just files so can go on any server, doesn't have to be a sql server. But - it could be better to detach the databases and...
June 28, 2009 at 2:19 am
Not really. The SQL install process guides you through setting up a virtual SQL Server name and IP address - the name is used by your applications to connect...
June 28, 2009 at 2:11 am
Could this be due to blocking? Have a look in Activity Monitor or run sp_who2 and sp_lock to see if there are transactions blocking which can cause timeouts.
June 27, 2009 at 12:08 am
Not sure what you mean. Are you looking to keep two schemas in sync or trying to compare schemas to find differences?
June 27, 2009 at 12:02 am
running select serverproperty('LicenseType') on 2005 always returns DISABLED. The only way to keep track of the licence types is to do it manually.
June 26, 2009 at 11:53 pm
The constraints are there to protect your data, don't disable or remove them to get the data in. What you need to do is either import the data into...
June 26, 2009 at 2:29 am
you can use profiler to trace the queries being run and you can also get it to generate a script to enable tracing.
June 19, 2009 at 4:08 am
In SQL 2005, use the following: select * from sys.master_files
June 18, 2009 at 12:17 am
Both Access and SQL Server require write access to the drives they run from so running from CD/DVD won't work.
I haven't used Access for a long time but...
June 12, 2009 at 12:16 am
A few comments:
Why have 3 active and 3 passive nodes? Are you assuming that all 3 active will go down at the same time?
Table partitioning will work...
June 10, 2009 at 7:37 am
Reporting Services can do this for you. It provides a web based report which can be exported.
June 10, 2009 at 1:44 am
you can see what databases are mirrored by looking in sys.database_mirroring.
June 8, 2009 at 2:14 am
If you are intending to run all the databases on the same server when it gets to production I'd go for a single instance unless either you want the databases...
June 5, 2009 at 10:09 am
Viewing 15 posts - 151 through 165 (of 283 total)