Viewing 15 posts - 16 through 30 (of 60 total)
Hi everyone,
Thank you all for your comments & practices you suggestions, many of which we are already doing. To answer you queries:
We are doing the weekly full back directly to...
November 16, 2022 at 3:58 pm
Hi Sue,
Thanks for the suggestion. I t was already added but I tried again and moved it around etc for blank and standard templates and tested a...
May 18, 2018 at 4:26 am
Hi Jeff (no, the other one)
Thanks for the suggestions. I tried a few different templates and a few other variations and while handy, I still cannot get...
May 17, 2018 at 9:14 am
Hi Jeff, yes the "TextData" column is displaying. I have played with it's location relative to the other ie first, second last position but when I click on the rtow...
May 17, 2018 at 3:24 am
Lets use a database restore as an example:
RESTORE DATABASE TestRestore
FROM DISK = 'SomeCorrectPath'
WITH RECOVERY,
MOVE 'WrongDataName' TO 'D:\SQL2014\Data\TEMPCOPY.mdf',
MOVE 'WrongLogFile' TO 'E:\SQL2014\Logs\TEMPCOPY.ldf'
The above will throw an error as the logical file names...
July 26, 2016 at 6:43 am
Thanks for the advice. Forgive me but how do you create a different SQL instance lets call it "TestInstance"
June 13, 2016 at 5:37 am
I think so - Above the words :"Tail-Log backup" it says :"Leave the database ready to use by rolling back uncommitted transactions. Additional transaction logs cannot be restored"
However I feel...
June 13, 2016 at 4:04 am
Well it defaults to "Restore with Recovery" - is this correct?
June 13, 2016 at 3:48 am
No I'm afraid not. I will keep digging - thanks for your assist this far.
J.
June 3, 2016 at 8:04 am
Yes, of course - your right joeroshan. Good spot I should have seen it myself. Well, that's a dead end then. It does not really explain why sometimes the error...
June 3, 2016 at 3:41 am
Awesome Drew. This works. Thank you both. J.
November 4, 2015 at 8:52 am
I do recall seeing message "x rows effected" but it may have been syntax error on my part. I *may* have done something like:
update someTable
set='newValue'
where someField='oldValue'
As I say - this...
October 6, 2015 at 4:56 am
Yes, that's what I thought. But the second SQL (ie the one using the key as unique identifier) is more stable so far. Must be something else kicking in after...
October 6, 2015 at 4:07 am
Sorry - I think it poor SQL on my part is the cause. Better to use syntax like this:
UPDATE someTable
SET soemFieldd= 'New Value'
WHERE key = blah
I'm such a dumba**. Apologies
J.
October 6, 2015 at 3:56 am
I'm just running ad-hoc update, standard syntax, nothing special. I have never experience anythign liek this before. The syntax is:
UPDATE tableName
SET someField = 'newValue'
WHERE someField = 'OldValue'
Command works and...
October 6, 2015 at 3:33 am
Viewing 15 posts - 16 through 30 (of 60 total)