Viewing 15 posts - 8,656 through 8,670 (of 8,760 total)
Jeff Moden (4/1/2014)
Eirikur Eiriksson (4/1/2014)
Please post proper DDL and enough data, the problem is straight forward from there.
If you're going to tell people that, then you need to tell them...
April 2, 2014 at 2:44 pm
Sean Lange (4/2/2014)
JoshDBGuy (4/2/2014)
I've run into issues in the past dealing with extremely poorly written queries with LINQ.
Ditto 😎
Using stored procedures is a good practice, a) how it retrieves the...
April 2, 2014 at 2:17 pm
First thing that comes to mind is a disk space or (EDIT) VM max size config kind of problem.
April 2, 2014 at 1:47 pm
MY_TWO_CENTS
Naming conventions are primarily to enforce consistency, readability and prevent ambiguity. A good solid naming convention is worth hundreds of pages of documentation on a large system.
😎
April 2, 2014 at 1:42 pm
This should work on 2K5
DECLARE @XML XML = N'<DetailRows>
<DetailRow>
<MonthNumber>1</MonthNumber>
<Amount>1000</Amount>
</DetailRow>
<DetailRow>
<MonthNumber>11</MonthNumber>
...
April 2, 2014 at 1:15 pm
Koen Verbeeck (4/2/2014)
I believe this is a late April Fools topic...
Correct 😛 found everything about it on BOL under AFD....
April 2, 2014 at 11:58 am
Luis Cazares (4/1/2014)
April 1, 2014 at 3:25 pm
0x42657474657220746F2072656D61696E2073696C656E7420616E642062652074686F75676874206120666F6F6C207468616E20746F20737065616B206F757420616E642072656D6F766520616C6C20646F7562742E
😎
April 1, 2014 at 3:05 pm
Most of the time cursors can be avoided but it's not a religion, there are tasks which do justify the use of cursors. Obviously if an operation can be achieved...
April 1, 2014 at 2:57 pm
lmnorms (4/1/2014)
Sorry for posting in the wrong forum. I can move it if necessary.
No worries, but do you have any sample data and table structure? Makes it easier to...
April 1, 2014 at 12:24 pm
Please post proper DDL and enough data, the problem is straight forward from there.
April 1, 2014 at 9:35 am
Hard to tell what is wrong without inspecting the code, can you share it?
March 31, 2014 at 3:12 pm
Do you have any event handlers configured in the package, sometimes those are overlooked?
March 31, 2014 at 2:37 pm
Luis Cazares (3/31/2014)
Eirikur Eiriksson (3/31/2014)
Luis Cazares (3/31/2014)
WITH Contacts AS(
SELECT INS.INSPNO, CNT.FIRSTNAME, CNT.LASTNAME, CNT.CAPACITY,
ROW_NUMBER() OVER( PARTITION BY INS.INSPNO ORDER BY CASE WHEN Capacity = 'Contractor' THEN -1...
March 31, 2014 at 2:33 pm
dmbaker (3/31/2014)
March 31, 2014 at 2:29 pm
Viewing 15 posts - 8,656 through 8,670 (of 8,760 total)