Viewing 15 posts - 1 through 15 (of 25 total)
How are you calling the log backup with Ola’a code?
Are you doing the @copy_only = ‘y’
Like this
EXECUTE DatabaseBackup
@Databases = 'BDNAME',
@Directory = 'G:\BACKUP',
...
October 26, 2021 at 11:31 am
Thanks for your answer, in fact those values are not entered by end-user. They are values of drodown lists, the end-user select the language at login, then every dropdown...
April 23, 2020 at 12:46 pm
Great thanks for your answer.
"With No recovery" that's what I was missing. So I guess when I restore the diff backup I'll do it "With recovery" ?
December 18, 2017 at 5:52 am
November 12, 2017 at 6:43 am
November 12, 2017 at 6:40 am
Sean Lange (2/12/2013)
You don't have to explicitly convert all 3 but you DO have to force it to datetime.
where convert(datetime, mydatecolumn, 120) between '2012-10-10' and '2013-04-01'
Will this really...
February 12, 2013 at 4:55 pm
Got it
SELECT IDTask, name, [1] as [StatusA],[2] as [StatusB],[4] as [StatusD]
FROM
(
SELECT t.idTask, t.name, ts.idstatus, ts.status
FROM dbo.Task t
JOIN dbo.TaskStatus ts
...
November 4, 2010 at 9:57 am
PIVOT is cool!
Is the PIVOT query will perform better than the second quety with multiple SUM ?
Martin
December 17, 2009 at 7:27 am
Thanks lowell
I don't think I would have imagine a solution like yours, it's brilliant
But I would like to have your opinion on this query assuming I know the ID_COMMUNITY of...
September 23, 2009 at 6:29 pm
Thank you, look interresting but my problem is simpler than you think.
A member belongs to only one community
here is an exemple with data.
Let's say I have 3 communities A,...
September 23, 2009 at 2:10 pm
Ok, here is my two queries. My app call the first one, and if it returns a value greater then 1 my app call the second one.
SELECT COUNT(*)...
September 23, 2009 at 10:35 am
Thank you for your answer
My knowledge of T-SQL allow me to write two separates Stored proc, but when it's time to merge them I am lost. I even don't...
September 23, 2009 at 9:33 am
Jeff,
with your second solution, the last select return 3 rows, one for each result. I can this select return only a single row, with the most recent...
January 31, 2009 at 9:10 pm
You are right,sorry, my mistake
Both yout solution give the exact wanted result
January 31, 2009 at 9:02 pm
Viewing 15 posts - 1 through 15 (of 25 total)