SQL Server can work seamlessly with Microsoft Access: SQL Server is the back end that contains tables and queries, while Access contains the forms and code.
Computer Consulting
Database Management in Maryland
Hello,
Where can I get Database Management done in Maryland? Can you recommend an experienced firm?
JW in Gaithersburg
SQL Server missing transaction logs
Is there there an easy way to determine if you are missing transaction logs for a SQL Server database?
Yes!
Try the following code:
SELECT D.[name] AS [db_name], D.[rec_model_desc]
FROM sys.databases D LEFT JOIN
(
SELECT BS.[db_name],
MAX(BS.[backup_finish_date]) AS [last_log_backup_date]
FROM msdb.dbo.backupset BS
WHERE BS.type = ‘L’
GROUP BY BS.[db_name]
) BS1 ON D.[name] = BS1.[db_name]
WHERE D.[rec_model_desc] <> ‘SIMPLE’
AND BS1.[last_log_backup_date] IS NULL
ORDER BY D.[name];
Computer Consulting firms in Maryland
Hi, I was wondering if there are any reliable computer consulting firms here in Maryland, or are most of them out on the west coast? I am particularly interested in Database Management.
Jim in Maryland
Backups
We recommend that people back their data up on 2 rotating media. That way a backup can be kept off-site, and rotated/updated every month or 2 for maximum safety!
Database Management for Access
Hello,
We have our company’s data in a database using Microsoft Access. Do we need to perform Database Management on it? The database is pretty small, less than 10,000 records.
Alyssa in Maryland
SQL Server with Access
SQL Server can work seamlessly with Microsoft Access: SQL Server is the back end that contains tables and queries, while Access contains the forms and code.
Small Business in Gaithersburg and PHP
We are a small business in Gaithersburg, Maryland (just outside Washington DC) and we’re wondering about PHP-
Can php be hosted on a windows server?