Viewing 15 posts - 3,616 through 3,630 (of 14,953 total)
I checked your error messages online, and it appears that this is most likely a problem with the service account accessing the Windows Registry. It's either using an account...
August 1, 2011 at 1:23 pm
Those messages are definitely SQL Agent updating the data it uses for its reports and such.
Do you have a lot of jobs running? Or a few jobs running very,...
August 1, 2011 at 12:54 pm
Stefan Krzywicki (7/29/2011)
GilaMonster (7/29/2011)
August 1, 2011 at 8:10 am
It gets worse than just accents.
I've had a multitude of people assume I'm not American, because I "speak well" instead of "talk good".
August 1, 2011 at 6:29 am
Start with the last one. It says you're missing a database on an instance of SQL Server. Have you checked to see if that database exists on that...
July 28, 2011 at 2:50 pm
That means you're trying to overwrite an existing database, while it's in use.
You'll need to take it offline, or set it to single-user and use that credential to run the...
July 28, 2011 at 2:46 pm
RAID-1 can definitely be more than 2 disks. It's just more redundancy, not more space. It means sequential writes, but some controllers will be able to do parallel...
July 28, 2011 at 1:15 pm
I'd say go for it. You said you have access to a mentor there, plus you have this site and others even if he's not available.
July 28, 2011 at 1:10 pm
I have had perks like that. Had the data portion of my cell phone bill covered as well, to cover company e-mails to my personal phone. (Was cheaper...
July 28, 2011 at 1:08 pm
Change this:
WHEN (E.ShiftDesc = ('AM','PM')) Then
to:
WHEN (E.ShiftDesc in ('AM','PM')) Then
You can't use "=" to check multiple values, you have to use "in" for that.
July 28, 2011 at 1:06 pm
I'd contact MS about that one. Sounds like a bug to me.
July 28, 2011 at 11:39 am
TravisDBA (7/27/2011)
cengland0 (7/27/2011)
GSquared (7/26/2011)
July 28, 2011 at 6:13 am
With my query, yes, I got the comparison operator backwards.
If you want to ignore ties, use Row_Number instead of Dense_Rank. Will cut off otherwise valid records if you have...
July 26, 2011 at 9:39 pm
Viewing 15 posts - 3,616 through 3,630 (of 14,953 total)