Viewing 15 posts - 3,391 through 3,405 (of 26,490 total)
Lee Hopkins (9/27/2016)
much more robust but for some reason one of my columns equUK [decimal] [14,0] is coming back as equUK decimal(38,38)
I know why, replace error on my part as...
September 27, 2016 at 12:08 pm
ScottPletcher (9/27/2016)
Talib123 (9/27/2016)
I'm a production DBA
... how do I get my T-sql skills to a developer\Report writer level.
So you want to go from DBA-level SQL to developer-level SQL:
Destroy half your...
September 27, 2016 at 12:07 pm
Also, a slightly more robust way to get the column names and and data types:
declare @collist nvarchar(max),
@schema nvarchar(128),
...
September 27, 2016 at 11:50 am
Only issue I see with the global temporary table would be if the procedure is called at the same time by multiple sessions.
September 27, 2016 at 11:47 am
The only way you will be able to do this is to dynamically create a table data type and then use that declare your table variable.
September 27, 2016 at 9:51 am
The end of your editorial reminded me of the PSA's on the Armed Forces Network talking about the obnoxious drinkers (male or female).
Don't be that guy!
September 26, 2016 at 8:13 am
The way it is shaping up right now, it is possible that, not only will I have the lowest winning score for the week, but that I may have lost...
September 26, 2016 at 8:00 am
Ray K (9/26/2016)
Oh for crying out loud! I might've well just played nine empty slots!!!
Should have played Tannehill, you would have beat me.
My players weren't that much better.
September 26, 2016 at 7:55 am
Sector7G (9/23/2016)
I have been dealing with this problem all afternoon. ...
September 23, 2016 at 2:52 pm
page853 (9/23/2016)
Thanks for all your replies.Could someone answer me the question;
Will looking at server task manager give any clue as to how the DB is performing ?
Task Manager? No.
September 23, 2016 at 10:55 am
Ken McKelvey (9/23/2016)
(I think that is the maximum for the standard version of WS2008R2.)
It is...
September 23, 2016 at 8:20 am
Smendle (9/23/2016)
Sergiy (9/22/2016)
Smendle (9/22/2016)
Eirikur Eiriksson (9/22/2016)
For a variable inside the procedure use this😎
DECLARE @MY_INT_VAR INT;SET @MY_INT_VAR = 0;
i could be confusing this with a .NET programming environment but doesn't that...
September 23, 2016 at 8:17 am
Luis Cazares (9/22/2016)
Phil Parkin (9/22/2016)
Anyone in the mood for a quick code tidy-up?Hell NO!!!:crazy:
What kind of tool wrote that code?
The OP that posted it????
September 22, 2016 at 1:18 pm
Luis Cazares (9/22/2016)
drew.allen (9/22/2016)
Sue_H (9/22/2016)
Luis Cazares (9/22/2016)
Interview question?
My thoughts as well. The follow up to that specific question could be interesting if someone doesn't know what would be different between...
September 22, 2016 at 11:51 am
It is a test system, it may be slow but it is acceptable for what you are doing? I'd be more concerned about it if it was a production...
September 22, 2016 at 11:18 am
Viewing 15 posts - 3,391 through 3,405 (of 26,490 total)