Viewing 15 posts - 1 through 15 (of 86 total)
Luis Cazares (5/26/2016)
Probably this could help. The problem is that you have a char(10) and you're looking for 8-character strings.
SELECT *
FROM dbo.Postcode
WHERE p_code LIKE N'___ ___ ';
Good call!...
May 26, 2016 at 7:41 am
Lowell (5/26/2016)
this might work as w to find your exceptions and outliers:
select p_code
from...
May 26, 2016 at 6:28 am
That was my thinking tbh, I like best practice but sometimes you just have to think whether it's worth following especially on a DB this small that doesn't appear to...
June 24, 2014 at 4:14 am
Sorry forgot to mention, recovery model is full and t-log backups are taken 5 times daily at 08:00, 11:00, 15:00, 18:00 & 22:00. I restructured the T-log backups a added...
June 24, 2014 at 2:50 am
That's perfect, many thanks. Time to get my bully on! 😀
January 14, 2014 at 10:30 am
I know it's comparatively small and I feel like the school bully but from the point of view of best practice (and a little anal retentiveness as well) I'd prefer...
January 14, 2014 at 10:08 am
sqlnaive (10/22/2013)
October 22, 2013 at 8:47 am
Improving things is always a good plan! 😀
I can sympathise with you as I'm the sole DBA for my company and with no mentor or guidance I had to map...
August 16, 2013 at 6:52 am
Beatrix Kiddo (8/16/2013)
WWDMark (8/15/2013)
My 2008 MCTS and MCITP Certs don't have 'expiration' dates on them, basically it's a case that technology moves on and if you've got a MCITP cert...
August 16, 2013 at 4:01 am
Beatrix Kiddo (8/15/2013)
August 15, 2013 at 9:21 am
Beatrix Kiddo (8/15/2013)
I have a related question, so I hope it's ok to put it here My manager is about to...
August 15, 2013 at 4:44 am
FYI: If anyone didn't know, this also a deprecated feature, see http://technet.microsoft.com/en-us/library/ms151149.aspx
August 12, 2013 at 1:44 am
Duncan Pryde (8/8/2013)
This article has some useful information on collations. In their recommendations at the end, it says:
If you are considering a SQL collation based only on the performance...
August 8, 2013 at 6:51 am
Viewing 15 posts - 1 through 15 (of 86 total)