Viewing 15 posts - 871 through 885 (of 2,268 total)
from memory you use the logical filename in move
RESTORE DATABASE [testdb]
FROM DISK = N'\\serverA\c$\sqlbackups\testdb.bak'
WITH FILE = 1,
MOVE N'testdb_Data' TO N'E:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\DATA\testdb_Data.mdf',
MOVE N'testdb_Log' TO N'E:\Program...
September 9, 2010 at 10:13 am
I would only consider spliiting up to different filegroups if you have exhausted other performance tuning options and if there is a noticable I/O bottleneck. Filegroups are not a...
September 9, 2010 at 5:44 am
It does seem the norm for BI jobs that I have worked at, cubes are usually built within a couple of days and up to a week when...
September 9, 2010 at 4:47 am
yes playing around with the registry can destroy an OS and any application that uses the registry.
September 8, 2010 at 11:51 am
I am doing it at the moment, used BOL as above , I couldn't find any specific books for it but I am sure some will be out soon..
September 7, 2010 at 4:12 am
you really need to do a log backup
have a read of this
September 7, 2010 at 3:53 am
Setup a maintaince plan to do a cleanup of t-log backups older than 1 day.
September 7, 2010 at 3:39 am
Also you need to ensure that any application that connects to the principal database is made mirror-aware. You can do this in .NET by using FAILOVER PARTNER in the...
September 7, 2010 at 3:31 am
you could cast the datetime to time for the where clause
where cast(start_date as time) = '00:00:00.0000000'
September 3, 2010 at 9:57 am
If the app server is a windows based server then you will be able too.
Safety of it depends on how you configure the security.
The pros are you will have...
September 3, 2010 at 9:25 am
If by log you mean changes, then for structure changes you can look at the default trace (if its running)
http://www.sqlservercentral.com/articles/SQL+Server+2005/64547/
for data changes you need to build that in...
September 3, 2010 at 9:10 am
Robert Frasca (9/3/2010)
steveb. (9/3/2010)
Take regular t-log backups to manage you t-log and provide PIT restores.
for the performance issue you...
September 3, 2010 at 8:40 am
It depends on what sort of mirroring you have setup, I would leave the thressholds alone unless you are experincing issues.
One important thing to consider after implementing mirroring is...
September 3, 2010 at 6:13 am
The trasanction log should not* affect the performance of the server.
Take regular t-log backups to manage you t-log and provide PIT restores.
for the performance issue you need to look at...
September 3, 2010 at 5:59 am
try using datediff to get the number of days between @start and the birthday
If it is between 0 and 7incl then their birthday is in the next 7 days
Where...
September 3, 2010 at 5:55 am
Viewing 15 posts - 871 through 885 (of 2,268 total)