Viewing 15 posts - 14,776 through 14,790 (of 49,552 total)
Looks like the restore statements were specifying the wrong files. Post the restore statements you used.
January 16, 2013 at 5:47 am
winmansoft (1/16/2013)
1)Does creating the file group requires extra work and effort while doing backup and restore?
No
2)Does the file group can be used to increase the performance of sql server if...
January 16, 2013 at 5:46 am
Could well be that the stats that the query depends on are column stats, not index stats. REbuilding an index only updates the stats associated with that index (and invalidates...
January 16, 2013 at 12:44 am
Deadlocks are mostly caused by poorly written queries and inadequate indexing, not hardware, recovery models, fragmentation or memory stats (though they can have an influence, except for recovery model that...
January 15, 2013 at 2:00 pm
MyDoggieJessie (1/15/2013)
Restore master, that will recreate all the user DBs that the old instance had (providing you left the...
January 15, 2013 at 1:33 pm
They're called "Checkpoint Begin" and "Begin Time", not in the old DBCC Log though, in the undocumented function fn_dblog
January 15, 2013 at 1:23 pm
Other way around. This isn't something you add to a table. Rather you move the table into a separate filegroup and mark the filegroup read only (tables can't be read...
January 15, 2013 at 12:52 pm
I strongly recommend against this approach. It's a security risk and a maintenance nightmare. You wouldn't develop a C# method that could handle customers or products depending on a parameter...
January 15, 2013 at 12:41 pm
The Checkpoint begin has a time, so does the begin transaction log record. The transaction log is not an audit log, the log records don't all need to have datetime...
January 15, 2013 at 12:40 pm
You've got redundant indexes there. The 2nd and 3rd are identical, you should drop one of them.
For the revised query that I gave you, you probably want one of these,...
January 15, 2013 at 12:36 pm
Lynn Pettis (1/15/2013)
george sibbald (1/15/2013)
sjimmo (1/15/2013)
Lynn
To restore to 1/13 4:00 AM you will need the previous days (1/12) full backup file plus all the t-log backups since that backup up...
January 15, 2013 at 11:32 am
MyDoggieJessie (1/15/2013)
1. Take full backups of all User DBs and the Master, MSDB, and Model DB
2. Completely uninstall SQL Server
3. Re-install
4. Restore all...
January 15, 2013 at 11:30 am
sjimmo (1/15/2013)
I believe the LSN chain broke at the start of the new database dump.
Full backups do not and never have broken the log chain,
My understanding is that once...
January 15, 2013 at 11:01 am
Please post index definitions (they're not in your script) and execution plan (not the picture of it), as per http://www.sqlservercentral.com/articles/SQLServerCentral/66909/
Also, you can simplify that query as:
select
eln_payslip,
edamount
from dbo.tbl_Penyata
where nogaji='047911' and edtype='01'...
January 15, 2013 at 10:57 am
Viewing 15 posts - 14,776 through 14,790 (of 49,552 total)