Viewing 15 posts - 106 through 120 (of 3,010 total)
andre.quitta (1/29/2014)
January 29, 2014 at 1:54 pm
I had a similar situation with a month-end read only database created for an application.
I did several steps:
1. Compress all the tables in the database (partitions for older years in...
January 29, 2014 at 1:46 pm
Database snapshot files are sparse files that show an allocated size the same size as the database file that are a snapshot of, but typically use much less space on...
January 29, 2014 at 10:34 am
Debora (1/28/2014)
delete from table
WHERE CONVERT(datetime, cast([year] as...
January 29, 2014 at 10:24 am
Since a TIMESTAMP column is 64 bits, the number of possible unique values = 18,446,744,073,709,551,616 ( 2 to the 64th power ).
Certainly a very large number.
A table with a...
January 27, 2014 at 9:53 pm
If you are doing connection pooling, the API stored proc sp_reset_connection does not reset the transaction isolation level, so it is important to make sure you reset the transaction isolation...
January 27, 2014 at 8:10 am
You can run the script on the link below to see the sized/used/unused space for each file in the database, and to see the size of the individual tables.
Script to...
January 23, 2014 at 2:33 pm
Why don't you just store the files in SharePoint?
January 22, 2014 at 3:25 pm
dquirion78 (1/21/2014)
thanks !I just read about money and decimal (19,4) Nobody seems to have the same answer about what the best data type...
It is probably best to avoid money...
January 21, 2014 at 2:36 pm
Using float in a calculation can cause problems because it is base 2 internally, so there can be issues with casting to display in base 10. For business calculations,...
January 21, 2014 at 2:31 pm
Casper101 (1/17/2014)
The shrink commands I used were:
DBCC Shrinkfile(dataFileNameHere,1)
DBCC Shrinkfile(logFileNameHere,1)
DBCC Shrinkdatabase(databaseNameHere)
The result of the query:
FileSizeMBUsedSpaceMBUnusedSpaceMBDBFileName
341463.06120929.25 220533.81 ***data
132.88...
January 17, 2014 at 11:08 am
It would be helpful if you posted the results of this query so we could see where the space is being used
-- Show Size, Space Used, Unused Space, and...
January 17, 2014 at 9:40 am
TDE will protect from two main threats:
Using the database backup files to restore somewhere else and looking at the data.
Copying the database data files, attaching to another server, and looking...
January 16, 2014 at 11:54 am
TDE cannot be used with compressed backups, so you may need more space for database backups and they may take longer to run.
January 16, 2014 at 11:01 am
There is another possibility: Use the four LUNS to create a single volume on the server for the database datafiles.
The data would be spread across the four LUNS automatically...
January 15, 2014 at 8:19 am
Viewing 15 posts - 106 through 120 (of 3,010 total)