Viewing 15 posts - 3,361 through 3,375 (of 6,396 total)
You shouldnt need to take any services offline, it should all be done seamlessly.
If you do want to take services offline for piece of mind, then just stop SQL as...
November 15, 2012 at 6:05 am
Ensure you have a good backup of anything which resides on that LUN, just incase the worst happens.
Typically the SAN guy should add the extra space into the LUN and...
November 15, 2012 at 5:55 am
The problem is that your expecting to store the file size of the actual physical file into your table which is not what your getting. What your getting is...
November 15, 2012 at 4:55 am
Are you writing to the same file on each backup run?
November 15, 2012 at 4:31 am
GilaMonster (11/15/2012)
anthony.green (11/15/2012)
November 15, 2012 at 4:08 am
GilaMonster (11/15/2012)
anthony.green (11/15/2012)
Then you must be using an earlier full backup and not the current one from the latest 10:30 backup.
This.
A backup that starts at 10:30 and finishes at 11:30...
November 15, 2012 at 3:51 am
If they can only ever be 0 or 1 then max will do the job, as if anything is set to 1 it will return 1 or if everything is...
November 15, 2012 at 3:41 am
You would use the hidden property of the parameters based on the value selected by the open/closed parameter.
Use an expression like
=IIF(Parameters!OpenClosed.Value = "Open", TRUE, FALSE)
You will need to ensure that...
November 15, 2012 at 3:26 am
If your using an aggregate function in the select, you need to put in a group by clause of all the columns which are not encased in an aggregate
SELECT name,...
November 15, 2012 at 3:23 am
Create a Role using CREATE ROLE
Then grant execute on the functions to the role GRANT EXECUTE ON .... TO rolename
Then add the user to the role sp_addrolemember rolename,...
November 15, 2012 at 3:22 am
miazaidi (11/15/2012)
User would have performed large DML operation, DELETE or UPDATEShrink you database, it will reduce the size of your .ldf as well as .mdf
USE [DATABASE NAME]
GO
DBCC SHRINKDATABASE(N'DATABASE NAME' )
GO
Why...
November 15, 2012 at 3:17 am
You get an email which contains the below
Job Name = Staging_Circle.MergeResourceToProcessWithResources
--------------------------------------
Step name = Circle.MergeResourceToProcessWithResources
DB Name = Staging_Database
Run Date = Nov 14 2012 11:08AM
Error = Unable...
November 15, 2012 at 3:16 am
You will need to add a step to the end of every job which is got to by the on failure action of the other steps in the job but...
November 15, 2012 at 2:39 am
Doh, yeah I missed that part when reading your post, my bad, sorry on that.
Could you not make use of using DBMail instead if your passing over the results of...
November 15, 2012 at 2:11 am
Viewing 15 posts - 3,361 through 3,375 (of 6,396 total)