Viewing 15 posts - 7,576 through 7,590 (of 8,760 total)
Jeff Moden (8/5/2014)
Eirikur Eiriksson (8/5/2014)
So this incedent was not a bug after all, it was a pork chop.Heh... I wonder if the lead developer's name was "Glon". ๐
Pretty close, almost...
August 5, 2014 at 3:07 pm
SQL_Kills (8/5/2014)
August 5, 2014 at 2:56 pm
powerofsound (8/5/2014)
Thanks for the heads up Sean, I do know the issues with using Nolock, but unfortunately itโs my companyโs policy to use it on all queries.
Quick thought (no...
August 5, 2014 at 2:44 pm
Not much I would suggest here apart from the missing separator in the concatenation and a covering index. Otherwise this would be pretty much my first and probably only approach....
August 5, 2014 at 2:39 pm
SQL_Kills (8/5/2014)
So say I have a table called "TableA" and have two database one called "Hub" and the other Database called "Adventure". I then want to call a stored...
August 5, 2014 at 2:19 pm
Don't think there is any reason to re-invent the wheel, it's more a matter of rephrasing the question so we can understand what you are after. There are quite few...
August 5, 2014 at 1:30 pm
Guess one has to differentiate between five years of work and five years worth of experience. Questions like "what are the DAC limitations", "consequence of an idle connection holding a...
August 5, 2014 at 1:19 pm
Quick thought, look in to this sp_describe_first_result_set, does as it says on the tin.
๐
August 5, 2014 at 1:04 pm
Ed Wagner (8/5/2014)
Jeff Moden (8/5/2014)
Eirikur Eiriksson (8/4/2014)
Jeff Moden (8/4/2014)
Eirikur Eiriksson (8/4/2014)
Koen Verbeeck (8/4/2014)
Lynn Pettis (8/4/2014)
Whom ever has the Great Mystical Crystal Ball, you are needed here.
I am afraid I have...
August 5, 2014 at 12:56 pm
Recommend that you use the nodes() method
๐
DECLARE @XmlDocument XML = N'<Attributes><Attribute name="ABCD">50405</Attribute></Attributes>';
SELECT
ATTRIB.DATA.value('@name','VARCHAR(10)') AS name
,ATTRIB.DATA.value('.[1]','INT') ...
August 5, 2014 at 7:04 am
Eirikur Eiriksson (8/4/2014)
mike 57299 (8/4/2014)
Msg 515, Level 16, State 2, Line 1
Cannot insert the value NULL into column 'scancode', table...
August 4, 2014 at 10:36 pm
Jeff Moden (8/4/2014)
Eirikur Eiriksson (8/4/2014)
Koen Verbeeck (8/4/2014)
Lynn Pettis (8/4/2014)
Whom ever has the Great Mystical Crystal Ball, you are needed here.I am afraid I have left it in my other coat...
I'm...
August 4, 2014 at 10:17 pm
mike 57299 (8/4/2014)
Msg 515, Level 16, State 2, Line 1
Cannot insert the value NULL into column 'scancode', table 'Solovue_Homart.dbo.scancode'; column...
August 4, 2014 at 10:06 pm
allanstarr023 (8/4/2014)
Ok will do...I did but will check over again
First place to look are the values of the strings being cast into date.
๐
August 4, 2014 at 9:58 pm
Here is a modification of the trigger which allows for multi-row inserts and uses the CONVERT function.
๐
CREATE TRIGGER dbo.scancode_scancode_autogen
ON SCANCODE
AFTER Insert
...
August 4, 2014 at 9:49 pm
Viewing 15 posts - 7,576 through 7,590 (of 8,760 total)