Viewing 15 posts - 631 through 645 (of 1,655 total)
You can GRANT EXEC on the schema. This would allow the user to execute all stored procedures in the schema, even when you create new ones.
November 25, 2008 at 3:41 am
I don't think you can import the diagram from Access to SQL server. Why can't you just create a new diagram in Management Studio?
November 25, 2008 at 3:32 am
supatpong (11/25/2008)
Thank you Tom Brown.Can you suggest me for this problem ,because my data is very important
If your data is very important, why don't you have a backup?
November 25, 2008 at 2:54 am
Vishal Singh (11/25/2008)
when I execute this query how it will populate the data. will it consider all the existing queries on the...
November 25, 2008 at 2:53 am
As Tom already said the answer is no. The ldf file only contains the transactions since the last tlog backup, but not the data.
You need to restorew from backup, if...
November 25, 2008 at 2:37 am
The easiest way to get this kind of info is to install the SQL Server performance dashboard. You can get it here:
As an alternative here are two queries from MS:
...
November 25, 2008 at 2:28 am
Mani,
the "problem" is that you're restoring from Enterprise Manager. EM hangs as soon as the server shutsdown after the restore and all you can do is kill the process. It's...
November 25, 2008 at 1:00 am
If your looking for info about the actual upgrade\migration you should check out the "Technical upgrade reference guide" from MS.
November 24, 2008 at 10:59 am
You should add the user to the database role db_securityadmin.
From BOL: Members of the db_securityadmin fixed database role can modify role membership and manage permissions.
November 24, 2008 at 10:51 am
The only way to audit SELECT queries is by running a trace. There is some performance impact, but if you write the trace file to a different disk then your...
November 24, 2008 at 10:47 am
Actually, that's exactly how it should be.
After restoring the master database SQL Server will shut down.
You can then remove the -m parameter and start the server in multi-user mode...
November 24, 2008 at 2:31 am
Philip Horan (11/21/2008)
Thanks for the replies. I keep 2 weeks worth as storage is not an issue at the moment.Thanks,
Phil.
Storage might not be an issue on your disk, but it...
November 21, 2008 at 4:07 am
Sorry, but there is no such command. While it's possible to remove somethings from SQL Server memory using DBCC commands, that won't release the memory to the OS.
November 21, 2008 at 3:30 am
You can use RESTORE HEADERONLY to get the contents of a backup device.
In the result look for a column called Backup_TypeDescription.
RESTORE HEADERONLY
FROM DISK = 'C:\myBackup.bak'
November 21, 2008 at 3:06 am
If you configure BackupExec to make incremental backups it will only write the new backup files to tape.
I also wonder why you need to keep 2 weeks of backups...
November 21, 2008 at 2:54 am
Viewing 15 posts - 631 through 645 (of 1,655 total)