Viewing 15 posts - 316 through 330 (of 441 total)
Edited : Added Florian's worship!
Try this, see what it does for you, tell me if it's any better.
Couldn't find my piece of code so I "Stole" Florian's, I hope he...
March 26, 2009 at 7:51 am
dndaughtery (3/26/2009)
March 26, 2009 at 7:43 am
Thanks Mike, these are some really interesting thoughts for some new development. The thing is, we still have to keep the "old" data, that is denormalized in the tables, for...
March 26, 2009 at 7:15 am
Damn, Gift beat me to it, 😀
March 25, 2009 at 2:45 pm
You could add an identity column, set identity insert on, and update to get the same value of your "Current ID" Column, then drop your column. You would then have...
March 25, 2009 at 2:44 pm
Mike, do not cross post, that is useless and only fragments answers.
Future posts should be posted here
http://www.sqlservercentral.com/Forums/Topic683505-338-1.aspx
March 25, 2009 at 2:01 pm
Lol, good job Flo, I love how you pointed that out, 😎
March 25, 2009 at 1:56 pm
I also have been really busy lately, and I completely forgot your post, 😉 Sorry about that. You might want to post your solution for others to see how you...
March 25, 2009 at 6:35 am
No problem, thanks for your feedback, it is always appreciated to know we can help!
March 24, 2009 at 2:57 pm
When you execute that procedure, within sql server, or within a .net application, the connection gets opened with a SPID. That id is your connection ID. If you "block" the...
March 24, 2009 at 1:45 pm
You are probably within a blocking transactions. You must have done an insert in the global temp table, or an update, and the table is still locked to the procedure....
March 24, 2009 at 1:18 pm
So, you do not want to execute code when yesterday was an holiday, just do a -1 day to the "@Today" Variable, in the code I gave you, and you...
March 23, 2009 at 12:19 pm
This query does exactly what you are looking for, just add your code (what you want to do) between the begin/end of the if statement.
March 23, 2009 at 11:06 am
GSquared (3/23/2009)
A TRY…CATCH construct catches all execution errors with severity greater than 10 that do not terminate the database connection.
Note that it says, "execution errors". Those are...
March 23, 2009 at 9:25 am
What version of SQL Server are you using? I had this problem when I did not have the right service pack. Upgrading the service pack stops "Pre executing" the transactions...
March 23, 2009 at 8:33 am
Viewing 15 posts - 316 through 330 (of 441 total)