Viewing 15 posts - 571 through 585 (of 928 total)
You can, but the recommendation is that you don't.
See 'Backing Up to a File on a Network Share' within http://msdn.microsoft.com/en-us/library/ms179313.aspx#NetworkShare.
You would be better off backing up to a local drive...
August 7, 2012 at 1:11 am
WayneS (8/3/2012)
Steve Jones - SSC Editor (8/3/2012)
FYI, since some of you submit questions. I'm no longer accepting images of code.Please feel free to debate me.
First, I agree with A-D of...
August 6, 2012 at 1:50 am
The detailed disclaimer made me laugh - trying to pre-empt any complaints?
August 6, 2012 at 1:32 am
When you place comments in your code you need to mark them as such:
August 6, 2012 at 1:13 am
Koen Verbeeck (8/3/2012)
Indeed, the correct answer is 1,0,1,error, because the last query produces a syntax error. Shame, because it was a pretty good question otherwise.
I agree, it would have been...
August 3, 2012 at 1:22 am
Excellent question Ron. I had to run the code through to understand what it was doing and learned something new.
August 2, 2012 at 1:26 am
sivag (8/1/2012)
thanksBrainDonor,
Gazareth
it was working fine
You're welcome. Thank you for including data and code to work...
August 1, 2012 at 7:04 am
select ID,
case val
when null then '0'
when '' then '0'
else val
end as val,
ISNULL(ser,0) AS ser,ISNULL(sa,0) AS sa from @test1
Use CASE to specifiy various conditions.
Note that it has to use '0'...
August 1, 2012 at 6:48 am
There is an excellent 'Stairways' series here, which explains the Log File in detail:
http://www.sqlservercentral.com/articles/Stairway+Series/73775/
July 30, 2012 at 3:24 am
danielfountain (7/30/2012)
Hey all,Its not random i know, but i cant see the order.
Because there isn't one. Without ORDER BY there's no guarantee of the sequence of the data. It...
July 30, 2012 at 3:12 am
SqlSpider... (7/27/2012)
I can Use Replace function, but in that string may have multiples of <IMG> tags, or nothing..
Sample String:-
'<p class="MsoNormal" style="text-align: center;"><span style="FONT-SIZE:...
July 27, 2012 at 4:05 am
I wondered if SQLSpider meant any '&' that was within a <img> tag.
I think the question could do with a little work to clarify it.
July 27, 2012 at 3:28 am
That would be how I would do it to, given the choices - with the witness on a separate server.
However, if you lose both the witness and mirror you also...
July 26, 2012 at 7:55 am
Something like SQL Pretty Printer may be of help.
There is a desktop version which can convert all files within a folder. A demo is available at http://www.dpriver.com/index.php.
July 25, 2012 at 10:17 am
Viewing 15 posts - 571 through 585 (of 928 total)