Viewing 15 posts - 511 through 525 (of 3,011 total)
There is no direct downgrade from 2008 Enterprise Edition to Standard Edition, so you would have to do one of the following:
Setup a new server running Standard Edition, and migrate...
August 6, 2012 at 1:25 pm
How about "cleaning" all address into another table with a pointer back to the original "unclean" address.
You can than compare the clean addresses to identify duplicates.
August 6, 2012 at 7:40 am
A little dynamic SQL with a string of 100 digits as input:
declare @val varchar(100) =
'20876543914578560430730723092317208765439145785604'+
'3073072309231720876543914578560430730723092317208'
declare @cmd varchar(300)
set @cmd = 'select [Sum] = '+
reverse(substring(reverse(replace(replace(replace(
replace(replace(replace(replace(replace(replace(replace(
convert(varchar(300),@val),'9','9+'),'8','8+'),'7','7+'),'6','6+')
,'5','5+'),'4','4+'),'3','3+'),'2','2+'),'1','1+'),'0','0+')),2,300))
print '@val = '+@val
print '@cmd = '+@cmd
exec (@cmd)
Results:
@val...
August 3, 2012 at 3:32 pm
mark 4643 (8/3/2012)
August 3, 2012 at 3:01 pm
Before you completely dismiss SSRS, you should make sure that you look at the latest version of it, SQL Server 2012.
Even if your data source is a SQL 2000, 2005,...
August 3, 2012 at 2:40 pm
In place of this:
or the earningsdate <> the timekey from dt3
or the CycleMonth <> the timekey from dt2
or AEarned1 <> staging column 1
or AEarned2 <> staging...
August 2, 2012 at 2:38 pm
bclyde-1080677 (7/31/2012)
Okay sports fans, here is the latest (probably not the greatest) version of the job post.Better?
Have you looked at the formatting? Something is very wrong.
Why is there a...
July 31, 2012 at 6:24 pm
Anytime you do a join between a local table and a remote table you have a likely performance problem.
The best way to deal with this depends on many things, like...
July 31, 2012 at 4:11 pm
Lynn Pettis (7/31/2012)
July 31, 2012 at 4:04 pm
SQLRNNR (7/30/2012)
Michael Valentine Jones (7/30/2012)
There are plenty of people that create denormalized databases and claim they did it for speed, and...
July 31, 2012 at 6:53 am
I'm really not sure exactly what you want to discuss.
There are plenty of people that create denormalized databases and claim they did it for speed, and not just in e-Commerce...
July 30, 2012 at 8:10 pm
SQLRNNR (7/30/2012)
Michael Valentine Jones (7/30/2012)
maw74656 (7/30/2012)
July 30, 2012 at 1:57 pm
Did you enable the mail profile under the SQL Server Agent Alert System properties?
July 30, 2012 at 10:19 am
maw74656 (7/30/2012)
July 30, 2012 at 10:14 am
GSquared (7/26/2012)
Steve Jones - SSC Editor (7/26/2012)
derek.colley (7/26/2012)
My advice would be to hire a company to find a DBA for you.
Sorry Abel but this is god-awful advice. I recently...
July 27, 2012 at 3:47 pm
Viewing 15 posts - 511 through 525 (of 3,011 total)