Tagged Questions
A transaction log file (also database log or binary log) is a history of actions executed by a database management system to guarantee ACID properties over crashes or hardware failures. Physically, a log is a file of updates done to the database, stored in stable storage. (from wikipedia)
4
votes
4answers
1k views
openGL textures that are not 2^x in dimention
I'm trying to display a picture in an openGL environment. The picture's origninal dimensions are 3648x2432, and I want to display it with a 256x384 image. The problem is, 384 is not a power of 2, and ...
3
votes
2answers
225 views
how can i see data in mdf file
i have asp.net application. it has App_Data folder. this folder contain mdf and ldf file.
how can i see data within these file. i want to see table structure.
2
votes
1answer
1k views
how to convert Mdf/ldf database files to .bak file (db restore) using T-SQL or .net code
I have sql server database files (Mdf/Ldf) and i want to convert them to backup file using T-SQL commands or .net Code (C# or Vb.net).
any suggestions.
thans
1
vote
3answers
547 views
How to query from log files (.ldf) of Sql Server 2005 Express edition?
I want to do this, because I would like to know how many times a particular row has been changed.
Is this possible?
Thanks
1
vote
5answers
2k views
Cannot delete SQLServer2005 data or log files
I was trying to restore a backup but I kept getting OS error 32 - cannot delete because in use.
Couldn't figure out what was locking the data and log files - so I rebooted the machine, stopped the ...
1
vote
3answers
2k views
openGL into png
I'm trying to convert an openGL [edit: "card that I drew"(?):) thx unwind]containing a lot of textures (nothing moving) into one PNG file that I can use in another part of the framework I'm working ...
0
votes
0answers
20 views
Can Microsoft Log Parser 2.2 open SQL LDF files? [migrated]
From the technet article for Microsoft's Log Parser 2.2 it states that
"Can't find an input format you need? The new COM input format makes it possible to create your own custom Input Format and ...
0
votes
1answer
187 views
How to open the SQL Server Transaction Log File(LDF)?
I mean the way to open the LDF file and read/analyze it.
Now, I have ability to extract the backup LDF file, but it seems that the LDF file is SHARE_DENY_READ when the database is working.
But the ...
0
votes
2answers
661 views
How to rename the Physical Database Files
I have used tsql to detach a database like this:
EXEC sp_detach_db @dbname = 'my_db'
I then made use of PHP to rename the physical files. I was able to rename the mdf file but not the ldf file! I ...
0
votes
3answers
3k views
SQL Server, Restore a .BKP file into an MDF file but not LDF (no space for it)
I'm in an issue where I don't have enough space to accomodate my MDF and LDF files from a LiteSpeed backup we had done.
I've come up with the following sproc:
exec master.dbo.xp_restore_database
...
-1
votes
1answer
205 views
Is there some documents for mdf, ndf, ldf file format? [closed]
Is there some documents for mdf, ndf, ldf file format?
Here the three different file types are belonged to SQL server.
I search the document on internet for a long time, but the result is ...