Viewing 15 posts - 391 through 405 (of 501 total)
J (10/9/2008)
Would you pleae humor my curiosity and give a short description of what kind of an application generates a terabyte of data ?
SAP
October 9, 2008 at 5:10 pm
SK (10/6/2008)
Would the best option be to have new LUN's presented (say three 50GB drives), add files there, and then empty and remove the existing file?
This is the option I...
October 9, 2008 at 4:41 pm
You could also grant VIEW DEFINITION to the dbo schema or any other schemas in the database.
USE [DATABASENAME]
GO
GRANT VIEW DEFINITION ON SCHEMA::[dbo] TO
GO
October 8, 2008 at 4:20 pm
We use clustering and/or mirroring for SQL 2005 depending on the application. I prefer mirroring since you have 2 copies of the data on separate disks. You have additional cost...
July 24, 2008 at 4:25 pm
rinu philip (7/17/2008)
I was about to automate a restore process though a job to be scheduled on a daily basis.
But I have a doubt in that, the job would...
July 18, 2008 at 2:30 pm
If you already have the login created and are adding another db, you can use the proc below to make the user a member of db_owner:
EXEC sp_grantdbaccess ' '
GO
EXEC sp_addrolemember...
July 16, 2008 at 5:35 pm
I have seen log shipping restore jobs fail when the copy job is still running due to a large log file. A reindex job was the culprit in my case....
July 15, 2008 at 4:26 pm
Could be a possible permission or domain controller issue. Any additional error messages? Anything in the logs?
July 14, 2008 at 4:38 pm
Just out of curiosity, why would you not want to take advantage of the Enterprise features and install Standard if you have already paid the money?
July 11, 2008 at 4:37 pm
Just to add my 2¢, but a checkpoint will not clear the log of a replicated database until the Log Reader has run. If your database is replicated...
July 11, 2008 at 4:30 pm
Thanks Ken! I guess I read "Number of Users" as "Number of Users Connected to the Database"
July 10, 2008 at 5:52 pm
Shrinking a database is generally a bad idea unless there is a compelling reason to do so. Are you running out of disk space? Why are you looking to shrink...
July 10, 2008 at 5:47 pm
I have never seen this number to be accurate in Management Studio. I would be interested in finding out where this figure is pulled from and how often it's updated....
July 10, 2008 at 5:39 pm
New data will be added to the new data file according to Microsoft's proportional fill algorithm. This means SQL Server will write data to the data file with the most...
July 10, 2008 at 10:11 am
You could also have them add another LUN and then you can add a data file to the new LUN. This wouldn't require downtime, like expanding a LUN would.
July 9, 2008 at 4:51 pm
Viewing 15 posts - 391 through 405 (of 501 total)