Viewing 15 posts - 26,056 through 26,070 (of 26,487 total)
You shouldn't see any real hit on your server during the change.
April 24, 2007 at 2:32 pm
Have you checked the SQL Server Logs for the day that the full backup, differential backup, and transaction log backups you are attempting to restore were taken? If no backup...
April 24, 2007 at 2:27 pm
Just curious, but does the index on the initials need to be unique? If so, how will the individuals in question know what their unique initials are when you finish...
April 24, 2007 at 1:51 pm
I would do it before users get on the system. After you switch to full recovery mode, do a full backup and then start your transaction log process to start...
April 24, 2007 at 1:44 pm
Also, convert your data from int to float before using and that you aren't passing the log10 function a 0 (zero) value.
April 24, 2007 at 1:40 pm
LOG in Excel defaults to base 10, where as LOG in SQL is the Natural Logarithm (same as ln in Excel) of a number. In SQL you need to use LOG10.
hth
April 24, 2007 at 1:19 pm
Here is my suggestion without looking at the data, import the data into a temporary table as text (character data), then convert it as you move it to your database. ...
April 24, 2007 at 1:14 pm
I agree with Aaron if you are going to keep your database in 3NF. Again, however, I'd also still say "It depends". Yes you can keep the database in 3NF,...
April 24, 2007 at 12:47 pm
Or try this:
select
MAIN_CODE,
SUB_CODE,
NAME,
DAYS = (select
INTVALUE
from
PINF p2
right outer join PINF p3
on (p2.MAIN_CODE =* p3.MAIN_CODE
and p2.SUB_CODE = p3.SUB_CODE
and p2.NAME = 'DAYS'))
from
...
April 24, 2007 at 12:40 pm
How about showing us the code you wrote in 2005?
April 24, 2007 at 12:25 pm
Also, you can query msdb.dbo.backupset to see what backups were completed if you don't have access to the logs for the time in question.
April 24, 2007 at 12:20 pm
It appears that there my have been a truncate of the log file done between the differential backup (file 3) and the next transaction log backup (file 4).
I am guessing...
April 24, 2007 at 12:13 pm
If the scripts above are accurate, I don't see you using the NORECOVERY option while restoring the differential backup.
Also, what happens if you restore the full backup (file 1) and...
April 24, 2007 at 11:01 am
I have gone back through my posts and have found four threads for this same procedure.
I really can't stress enough that you need to try to solve your problems first...
April 24, 2007 at 9:47 am
Viewing 15 posts - 26,056 through 26,070 (of 26,487 total)