I really don’t think you can do this. I tried goggleing this and I didn’t find anything. Yanni from <a href=”http://www.dsr-inc.com”>DSR Inc.</a> HI Yanni, I also did the same search & couldn’t find any solution, that’s why i’ve put question over here.
Worse comes to worse, you can just install the current TSM agents on the VMs within the VMware environment and backup the VMs as if they were physical machines until you can upgrade your TSM system so that you can backup the VMs via the host.
How did you migrate them? Did you upgrade the database by restoring it from the old server to the server? Did you upgrade the old server to SQL 2005? Did you attach the database to a new machine running SQL 2005? In all these cases the stored procedures are written exactly how they were when [...]
I see three options for you. 1. Change the foreign key so that it uses the same columns for the parent and the child. 2. Add computed columns to the table so that if the Lead_Client value is not null then the values are entered in automatically. 3. Change the front end so that the [...]
Another useful web page is SQLServerTutorials.com. Professor William Iverson has broken down the ‘Introduction to T-SQL’ into 15 videos (3 hours & 40 minutes) that have been very helpful to me.
As of ARCserve 12.0 the default ARCserve database is SQL Express, however SQL Server can also be used. If the database resides on another system then during the installation of ARCserve just point it to the location of the database and select to not overwrite the database. By detault ARCserve creates a database protection job [...]
<pre>select deptno, sum(case gender when ‘M’ then sal else 0 end) [maletotal sal], sum(case gender when ‘F’ then sal else 0 end) [femaletotal sal] from table group by deptno</pre>
That is very strange. The only reason that the differential backup would not be very small after the full backup was taken would be if the COPY_ONLY flag was used when the full backup was taken. Check the maintenance plan and make sure that the package isn’t generating T/SQL using this flag.
You can flush the cache using DBCC, or restarting the SQL Server. If you do an sp_recompile on the object being queried then you will mark all the plans for that object as invalid. You can also change a server wide setting which will flush the cache.
Hi JohnsonMumbai: I do not know for sure since I had asked that question myself, but I think you should use the new index (which I assume is a logical file or view) in your query. Then you can be sure it is used (specially if the query order matched the logical). FlorenJM
What you want to use is the native Merge replication. The users at each branch office will always connect to their local SQL Server instance. When the network is online the branch office SQL Server will update the central database is near real time. When the network is down the changes will be queued and [...]
OK, what you want to use is the native Merge replication. The users at each branch office will always connect to their local SQL Server instance. When the network is online the branch office SQL Server will update the central database is near real time. When the network is down the changes will be queued [...]
What SQL is clustered you need to ensure that the SQL Server instance is dependent on shared disks within the cluster manager. If it isn’t then you won’t be able to attach the databases on those disks. Stop the SQL Service, right click the SQL Server resource within the cluster manager and select properties. Select [...]
I do not think that there is. Check the Microsoft.com/sql website for a full feature list. You may also wish to wait and see what will be release in the next release which is code named “Denali”.
You can run SQLIO against the server, but it will impact the performance of the SQL Server, and anything else which shares spindles on the SAN with the SQL Server, and possibly anything else on the SAN as you flood the SAN cache. It is usually recommended to not run SQLIO on production servers.
SSIS can do this, it will require some work, but it isn’t all that hard to do.
I believe that you are look for a file group backup and restore. That should give you the keywords to find the article you are looking for.
The problem is most likely that Sql server has been configured to work in Windows Authentication Mode so it doesn’t allow using sql accounts. If that is the case, changing it to work in Mixed Mode should solve the problem. Take a look at this Microsoft article: <a href=”http://support.microsoft.com/kb/555332″>Login failed for user ‘username’. The user [...]
Yes, future growth would be best handled with SQL Server. Depending on the amount of data, you could start with the express edition and upgrade to standard or some other edition when needed. ———–
If the MDF isn’t damaged you should be able to attach the MDF without the LDF using the sp_attach_single_file_db system stored procedure. This will generate a new log file when it attaches the database. If this works without issue run a DBCC CHECKDB to ensure that there aren’t any problems with the database. Keep in [...]





