Viewing 15 posts - 5,281 through 5,295 (of 13,465 total)
ChrisM@home (7/2/2012)
Nige.
ok even with my awesome Google-Fu skills, I'm not getting the reference.
July 2, 2012 at 1:16 pm
look at the MIRROR TO option in the standard backup command;
that can make an additional copy of the backup to another network/local loccation, so there are two copies out...
July 2, 2012 at 9:38 am
derek.colley (7/2/2012)
"minimal typing skills"? So you want your applicant not to be able to use a keyboard, then?
yeah i was totally qualfied up until that;
another victim of "you are too...
July 2, 2012 at 6:58 am
i love to help those who help themselves;
it looks like Chris@home spent a lot of time writing code and helping you out there in the other thread, but i don't...
June 29, 2012 at 12:21 pm
this is a common security misconception/"gotcha". The problem is that when you access any resource OUTSIDE of SQL server, like network shares, local hard drives and folders,xp_cmdshell,bcp with a "trusted"...
June 29, 2012 at 6:48 am
i'm in the US, but i ordered my from amazon for ~$44 USD;
is it available on amazon.uk? (blocked at my job: no shopping allowed)
June 29, 2012 at 6:35 am
i think you just want the items where the modulous of year(getdate) - year(EecDateOfSeniority) is zero;
something like this:
with OneSample
AS
(
SELECT CONVERT(datetime,'12/30/2007') As EecDateOfSeniority UNION ALL
SELECT CONVERT(datetime,'12/30/2004') As EecDateOfSeniority ...
June 28, 2012 at 3:10 pm
well the error you posted is related to NET SEND, and not database mail;
i think your mixing the two up a little bit, and
that NET SEND should...
June 28, 2012 at 1:46 pm
i was under teh impression that NET SEND doesn't exist on vista or windows 7 machines; could that be the problem?
June 28, 2012 at 1:28 pm
sure!
parsename is just a handy built in function. built in functions will almost always perform better than code you build yourself, so if i can squeeze data into it's expected...
June 28, 2012 at 12:54 pm
looks to me like you'll need 200 update statements, one for each possibility: otherwise you end up with unintended updates.
UPDATE SOMETABLE
SET ABCField =
CASE
WHEN Field1 = '2012' THEN 'Y'
ELSE...
June 28, 2012 at 12:37 pm
excellent job providing the consumable DDL and insert statements!
Thank you!
here's a neat trick that might not work, depending on your data;
it looks like comma separated, always 4 values, and the...
June 28, 2012 at 11:32 am
here's one way to do it:
create a scheduled job that runs every day, but only does real work when the dates match the last day of the month:
here's the formula,...
June 28, 2012 at 11:08 am
if you renamed your server at the operating system level, the SQL server might still be remembering the old name;
this is how you fix it:
sp_dropserver 'old server name'
sp_addserver 'new...
June 28, 2012 at 8:31 am
yeah the MyPosts link is limited to 150, and i'm pretty sure it's not even in the posted order, either.
I'm 8000+ posts deep, and when i need to recover a...
June 28, 2012 at 8:26 am
Viewing 15 posts - 5,281 through 5,295 (of 13,465 total)