Viewing 15 posts - 166 through 180 (of 616 total)
Minnu (6/25/2013)
How much of RAM is required to overcome High physical memory utilisation issue.
What do you mean?!
June 25, 2013 at 10:35 am
ChrisM@Work (6/25/2013)
Abu Dina (6/24/2013)
ChrisM@Work (6/24/2013)
Abu Dina (6/24/2013)
DECLARE @pairs TABLE (dropped_id INT, retained_id INT)
INSERT INTO @pairs
SELECT 16492, 23011 UNION ALL
SELECT 23011,24014 UNION ALL
SELECT 23011,24951...
June 25, 2013 at 8:11 am
ChrisM@Work (6/24/2013)
Abu Dina (6/24/2013)
DECLARE @pairs TABLE (dropped_id INT, retained_id INT)
INSERT INTO @pairs
SELECT 16492, 23011 UNION ALL
SELECT 23011,24014 UNION ALL
SELECT 23011,24951 UNION ALL
SELECT 16492,24951...
June 24, 2013 at 9:33 am
This is still giving me problems! :unsure:
DECLARE @pairs TABLE (dropped_id INT, retained_id INT)
INSERT INTO @pairs
SELECT 16492, 23011 UNION ALL
SELECT 23011,24014 UNION ALL
SELECT 23011,24951 UNION ALL
SELECT 16492,24951 UNION ALL
SELECT 16492,29381...
June 24, 2013 at 8:47 am
GilaMonster (6/20/2013)
Abu Dina (6/20/2013)
Basically you use it so that you don't break the backup chain so go for it!
You mean 'don't reset the differential base', because that's all that a...
June 20, 2013 at 12:18 pm
Can mirroring be initialized with a copy only backup?
From MSDN (http://msdn.microsoft.com/en-us/library/ms191495.aspx)
Restoring a copy-only full backup is the same as restoring any other full backup.
Basically you use it so that...
June 20, 2013 at 10:38 am
You say:
However a couple of the columns contain addresses with the NewLine Cahrachter embedded in it which is ruining my export to Excel
So if it's just a couple of columns,...
June 20, 2013 at 10:32 am
Are you 100% sure you restored the correct backup?!
June 20, 2013 at 9:51 am
Have a look at this: http://ola.hallengren.com/
This is also great: http://www.sqlservercentral.com/articles/Backup+%2f+Restore/66564/
In the end I ended up impleneting my own solution after being inspired by http://sql-ution.com/download-the-dba-repository/ and http://sqlmag.com/sql-server/dba-repository-2010
This is the query I...
June 20, 2013 at 7:39 am
Have you tried the code I provided above?!
June 20, 2013 at 6:25 am
Do you have another backup file?
June 20, 2013 at 5:35 am
There is no need for a cursor to get the top 10 rows per port_portcode.
Try this (not tested due to lack of sample data though)
;with cTE AS (SELECT Port_Portcode,
Class_0_Minor_Description,...
June 20, 2013 at 5:10 am
You haven't provided enough information Tony.
Are you pulling data from multiple SQL instances/databases?
Are the SQL instances within a trusted domain?
I would look at using the Foreach Loop Container for this...
June 20, 2013 at 2:22 am
Isn't it just a case of adding an On Failure Action in the job and create an additional step in your job to perform the database restore?
BTW, why not take...
June 19, 2013 at 5:17 am
Viewing 15 posts - 166 through 180 (of 616 total)