Viewing 15 posts - 316 through 330 (of 380 total)
Nice article but while reading it I could only thing about one thing.
Why do you call these Myth's?
A Myth is something that people believe is true that is not. ...
August 8, 2013 at 7:35 am
Post removed for being way too sarcastic.
August 6, 2013 at 1:04 pm
Nice question and Answer!
Two great questions two days in a row.
Awesome!
August 6, 2013 at 6:35 am
Steve - I have only had two things that over 12 years of use I would recommend in any new updates to the site. These things are not IMHO...
August 5, 2013 at 10:12 am
RedBirdOBX (8/5/2013)
Corrected. Removed "BEGIN".Works so far.
Yes from what I read in your initial post you should either remove the first Begin after as or add another END as the...
August 5, 2013 at 9:49 am
L' Eomot Inversé (8/4/2013)
The answer seemed a bit obvious though - the phrase " Import Project Wizard" suggested that importing an SSIS project would be what was...
August 5, 2013 at 9:28 am
This is one of the best questions in a while.
I can tell by the answers provided that a lot of us learned something today.
Thanks so much. 😎
August 5, 2013 at 9:25 am
Nice question igorMi and great explanation. I had not though about these types of locks for a while.
August 2, 2013 at 12:42 pm
rwalker03 (8/2/2013)
Thanks for taking the time to respond it is appreciated
You are welcome. As someone that suffered with other peoples DTS and loved BCP and scripts for SQL/shell commands,...
August 2, 2013 at 9:21 am
If you are familiar with DTS designer and the new look and feel of Visual Studio 2008 or 2010 then highly recommend using SSIS. Also you can use the...
August 2, 2013 at 7:38 am
Hugo Kornelis (8/1/2013)
PHYData DBA (8/1/2013)
I'll just let the code speak for itself.Have Fun! 😎
EDIT - Watch how datalength changes on the string variable.
This time I remembered to refresh before posting....
August 1, 2013 at 9:30 am
philip.cullingworth (8/1/2013)
PHYData,I'm not sure I understand what you are trying to say with this code, but let's go through it select by select
Seems like understood everything as well as I...
August 1, 2013 at 9:29 am
Hugo Kornelis (8/1/2013)
PHYData DBA (8/1/2013)
August 1, 2013 at 7:13 am
DECLARE @var money = 123456789101118.12345
DECLARE @nvarchar nvarchar(21)
DECLARE @char nchar(22)
--Select 1
SELECT LEN(N'123456789101118.12345'), DATALENGTH(N'123456789101118.12345') ,N'123456789101118.12345'
--Select 2
SELECT LEN(@var), DATALENGTH(@var), @var
--Select 3
SELECT @nvarchar = convert(nvarchar(21), @var)
SELECT LEN(@nvarchar),...
August 1, 2013 at 7:06 am
philip.cullingworth (8/1/2013)
PHYData DBA (8/1/2013)
Hugo Kornelis (8/1/2013)SELECT LEN(@var) implicitly converts @var to string, because that's the only data type supported for LEN. This conversion is independent of the clients' Windows locale...
August 1, 2013 at 6:52 am
Viewing 15 posts - 316 through 330 (of 380 total)