Viewing 15 posts - 211 through 225 (of 252 total)
Miles Neale (8/22/2012)
August 22, 2012 at 11:49 am
Wow. I'm actually kind of amazed at the amount of vacation time present in this thread :-P. This is only my first programming job, and I'm quite thoroughly...
August 20, 2012 at 7:47 am
Seems to be a problem with the BETWEEN part of the query; it can't do a comparison to those numbers because you're passing an nvarchar type to the BETWEEN, and...
August 9, 2012 at 7:53 am
From what I understand, RESTORE VERIFYONLY will only check to see that the backup set is complete and readable, but it does not check the structure of the data particularly...
August 3, 2012 at 11:48 am
This is probably very general advice, but it's what's worked for me as far as learning goes :-). First, in your dev environment, try to create a giant lump...
August 3, 2012 at 11:43 am
Hm. Let's see here...
1x main production database
1x inventory management database
4x daily full backups of main production database, scattered around our servers and workstations (I'm quite paranoid about losing our...
August 3, 2012 at 7:52 am
Hehe, I'm just about to hit the one-year mark in SQL programming for a living, and while it's been great so far, the place I work at doesn't quite qualify...
July 25, 2012 at 8:01 am
Jared, we've got sales data going back to 2007, and we add about a thousand rows to the table daily at present, though that rate could increase as time passes....
July 20, 2012 at 11:25 am
Sorry for the late reply! Was quite tied up at work, and then more so at home :-). Luis is correct, we already have a table charting all...
July 19, 2012 at 10:05 pm
Heh, during my initial job hunt for anything programming-related, I stumbled across several "entry-level" jobs that either required certification, 3-5 years of experience, or both! I was quite amazed...
July 18, 2012 at 1:12 pm
Rough shot, but something like this should work:
SELECT LastName+CHAR(44)+FirstName
Adjust the LastName and FirstName as needed to match your column names; the SELECT is there for you to verify the results...
July 17, 2012 at 9:54 am
Ack. My business is currently dealing with just such a problem, and it's giving the accounting team fits. For one marketplace that we sell our goods in, the...
July 12, 2012 at 12:20 pm
Well, my story probably isn't exciting, as there's not all that much to it, but I'll toss it into the pot :).
I started college with the goal of becoming a...
July 10, 2012 at 11:22 am
I might be completely wrong here, but here's a shot in the dark!
Try:
USE [DatabaseName]
GO
sp_helprotect
This seems to return a list of all logins for the database in question that have been...
June 28, 2012 at 7:32 am
Ack. Oh well, that rules it out in the specific scope of this question, but I can certainly toss computed columns around in a few other things. I'll...
June 22, 2012 at 1:05 pm
Viewing 15 posts - 211 through 225 (of 252 total)