Viewing 15 posts - 16 through 30 (of 86 total)
They physical reads did fluctuate from 0 on a fast run to 148 on the slow run. While I would not think that would produce such a large change,...
February 7, 2013 at 12:12 pm
In early testing for the procedure I did find an index that was missing. That did not fix the issue completely, it only made it less recurrent. As...
February 7, 2013 at 8:46 am
Just FYI... I was able to take an outage tonight.
I did a Detach/Attach to the DB.
Preformed all the alter auth and set trustworthy steps
BOOM...its working now.
Problem remaining... what happened...
August 11, 2011 at 11:37 pm
DECLARE @t TABLE (vals VARCHAR(1024))
INSERT INTO @t (vals)
VALUES ('http://domain/sub1/sub2/sub3')
INSERT INTO @t (vals)
VALUES ('https://domain2/sub1/....')
INSERT INTO @t (vals)
VALUES ('http://domain_n/')
INSERT INTO @t (vals)
VALUES ('https://anotherdomain/')
DECLARE @tImed...
August 11, 2011 at 12:59 pm
I will now ask why trailing spaces need ever be considered significant
It is not significant, unless you have data that came from an outside source, say migrated data.
If you...
June 10, 2010 at 2:07 pm
I wouldn't say there is anything curious about LIKE's behavior.
The curious behavior to which I was referring is the subtle nuance between the following statements
SELECT DATALENGTH(t.testdata) actualLength,t.testdata...
June 10, 2010 at 2:02 pm
Thanks to all
So the summarized information is here
DECLARE @tbl TABLE
(
testdata VARCHAR(1024)
)
INSERT INTO @tbl ( testdata )
VALUES ( 'a') --0 spaces
INSERT INTO @tbl...
June 10, 2010 at 11:55 am
GREAT ARTICLE.
It explains a lot, however, it seems to indicate that the LIKE operator would allow you to find the non padded a.
When I tested it
SELECT DATALENGTH(t.testdata) actualLength,t.testdata FROM @tbl...
June 10, 2010 at 11:25 am
You can insert and store trailing spaces if you really wish to do so.
it appears to be storing the spaces
when i change the select statement to the following
SELECT '>' +...
June 10, 2010 at 10:49 am
it will not affect the SQL string comparison rules (eg. WHERE and HAVING clauses).
Why are trailing spaces considered insignificant in relation to comparison rules?
And I guess more important that that,...
June 10, 2010 at 10:46 am
My Log backups are every 10 minutes because I am doing log shipping.
The Defrag schedule is MWF 330am and appears to take around 1.5 hours.
Every MWF without fail about 420-430...
July 8, 2009 at 6:18 am
Lowell (7/8/2009)
there's a thread here about what tools some folks use:http://www.sqlservercentral.com/Forums/Topic650537-146-2.aspx
Also there seems to be at least some indication that Contig did nothing for the sytem where the db was...
July 8, 2009 at 5:53 am
Lowell (7/8/2009)
I'd actually pose the opposite question: why is it a good idea NOT to do this...
July 8, 2009 at 5:47 am
That's what I was looking for, a simple but effective solution.
Thanks,
March 23, 2009 at 12:02 pm
Well I figured out how I will accomplish my task.
Basically I will log ship as I had originally stated. Then (believe it or not I am going to plug...
June 17, 2008 at 7:28 am
Viewing 15 posts - 16 through 30 (of 86 total)