Viewing 15 posts - 1 through 15 (of 236 total)
September 26, 2017 at 12:38 pm
Thanks Jeff, those are very helpful! I like that way of describing what's going on. Good to see you also. I haven't been here in years, but I do remember...
September 20, 2017 at 6:03 pm
Oh I see now! I'm going to have to spend the rest of the day learning CROSS APPLY. I've been doing SQL for 20 years and that one still confuses...
September 20, 2017 at 2:53 pm
We have to leave that function in place because other apps use it to generate single codes when needed. It is the approved method of generating codes and I didn't...
September 20, 2017 at 2:30 pm
OK this is what I came up with... this works quite well.CREATE FUNCTION dbo.GetMultiplePromoCodes(@NumCodes int)
RETURNS @PromoCodes TABLE
(
PromoCode nvarchar(10)
)
AS
BEGIN
September 20, 2017 at 2:17 pm
I am free to do whatever I want. Currently the function only generates one new "random" promo code (it's what the customer types in to the checkout to get their...
September 20, 2017 at 1:39 pm
I agree this is a "trick" question of a sort. They aren't asking this to get an answer, but more to see how you think. It's an open-ended question designed...
September 20, 2017 at 1:30 pm
I only worked there for two months, and I didn't do anything and didn't get to know anybody - they all hated me for some reason. It really was weird....
April 18, 2013 at 10:47 am
Oh yeah I know that, I've been doing this stuff for over 20 years. It isn't maybe as bad as I made it sound. I just didn't like the place....
April 17, 2013 at 9:52 pm
LOL, better things come up and sometimes you have to irritate someone in order to take advantage. I left in an unprofessional way, but I had to do it that...
April 17, 2013 at 12:05 pm
Well I hope it doesn't cause any "issues" because I don't have that job any more and I'm never speaking to them again!
April 17, 2013 at 11:24 am
Sean Lange (2/11/2013)
DON'T use things you don't need, like the BEGIN and END for the proc itself - completely unneeded and doing nothing but cluttering up the screen.
Actually begin...
February 11, 2013 at 4:23 pm
You should probably thank me for that...
February 11, 2013 at 2:58 pm
I found out how to fix it. It's in the Control Panel->User Accounts->Manage Your Credentials
One of the things in the "Vault" was the user it was picking for deployment. Deleting...
January 31, 2013 at 12:55 pm
I added some comments to your proc, and fixed the layout, formatting, capitalization - all of which was horrifying to begin with. Pick a coding standard and then use it....
January 30, 2013 at 5:37 pm
Viewing 15 posts - 1 through 15 (of 236 total)