Viewing 15 posts - 136 through 150 (of 276 total)
Okay, thank you, now I understand what is going on. These values appear to be stored in a database table, which (if so) will make this change easy to do....
October 16, 2014 at 10:08 am
Yes, I am right-clicking the dtsx file and opening in Notepad++.
Sorry if I'm not exactly following the rest of your reply. But we have flatfile connections, as well as...
October 15, 2014 at 7:55 pm
As Sean said, we need to know more about your data before we can give you a good answer. But are you maybe looking for something along these lines?
WITH
CTE...
September 18, 2014 at 11:47 am
Here's some SQL2K5-friendly DDL, in case anyone else is stuck in the stone ages like me:
declare @tblA table ( ID int, Value int, primary key ( ID ) )
declare @tblB...
August 15, 2014 at 5:33 pm
Just want to chime in and say thanks for posting, because I'm currently stuck in this same nightmare and it's taking multiple departments here and a ton of googling and...
August 14, 2014 at 4:51 pm
That is what they mean by proxy, but I'm just not seeing the RUN AS options when I try to create the SQL Agent job. Must be some permissions issue...
August 14, 2014 at 3:56 pm
I've spent an insane amount of time on this. I'm sure there's an easy solution.
Apologies again for my ignorance, I'm just not seeing anything obvious here.
They are telling...
August 8, 2014 at 4:32 pm
This might not be helpful, but you might want to look at some form of caching or a static version of every page on the site. If the issue is...
August 6, 2014 at 4:46 pm
Also, would this be something you could do with a persisted, computed column instead of a trigger?
August 4, 2014 at 1:05 pm
I'm still not able to understand what you want to do here.
If you had one record per Calendar_Month, this would make more sense to me. As it is, you...
August 1, 2014 at 4:05 pm
Instead of passing specific @id numbers to your stored procedure, can you code the stored procedure to automatically find the ID's that need to be merged?
If not, maybe look...
August 1, 2014 at 2:19 pm
You should make sure your DDL works before you post it here.
You have columns in your table called TRIAL... and in your insert statement called TRAIL...
You have a column...
August 1, 2014 at 1:53 pm
If you format your code nicely, the answers to questions like these will be a lot more obvious to you and anyone else who has to work on your code...
July 31, 2014 at 4:42 pm
To further explain things (hopefully correctly), the reason your SQL was failing was that it was determining the MAX value once, and adding 1 to it once, and attempting to...
July 31, 2014 at 3:55 pm
Thank you, I was wondering why Lynn wrote it that way! Makes sense.
July 31, 2014 at 8:05 am
Viewing 15 posts - 136 through 150 (of 276 total)