Viewing 15 posts - 61 through 75 (of 232 total)
select '['+column_name+']' ColumnName from INFORMATION_SCHEMA.columns where IS_NULLABLE = 'yes' and table_name ='Person'
-- copy and paste the results for this column in below
ColumnName
[Title]
[MiddleName]
[Suffix]
[AdditionalContactInfo]
[Demographics]
--...
July 28, 2012 at 3:21 pm
I had the same issue and restarting MSSMS fixed it..
June 12, 2012 at 12:08 pm
Thank you for the comment and yes, you are right, it depends on the individual scenario / special cases / etc. and that traffic and the IO is not too...
April 30, 2012 at 12:13 pm
This is just a sample piece to demonstrate how to "denormalize" data.
Really a fun thing to play with and not taken seriously as a practical script for production.
As...
April 25, 2012 at 3:33 pm
You are absolutely right.
What I should have added as a comment or a warning is that .. "... this is for training purposes and should not be considered as a...
April 25, 2012 at 9:21 am
I did not continue to read the rest of the script after seeing the 2 "," back to back..
therefore, I have answered the last 2 .. since both will...
April 4, 2012 at 9:02 pm
..with possibilities of truncation?
November 13, 2011 at 2:54 am
Of course the language notion is a very good point. however, this example was of course set for English ..
but your point is well taken
November 10, 2011 at 3:55 pm
Yes, of course, it is only a 30 day month. Albeit, it is not because it knows the "END" of the month.. but the requested day is the 31st of...
November 10, 2011 at 3:54 pm
"MUST READ THE WHOLE QUESTION... MUST READ THE WHOLE QUESTION... MUST READ THE WHOLE QUESTION... MUST READ THE WHOLE QUESTION... MUST READ THE WHOLE QUESTION...
"
Of course I answered all...
November 10, 2011 at 11:25 am
this explains it why mine did not work also.. I had bigint and table data types..
November 9, 2011 at 5:14 pm
I also have posted 3 options and I thought I was right!! Is there an ambiguity to this question and the answers or I really need to go back...
November 8, 2011 at 3:05 pm
Perhaps a single search on a single column with non-clustered index would be fast and as a matter of fact there are some recommendations on building a non-clustered index on...
November 6, 2011 at 2:41 pm
Ashish has a very good point. Also, clustered one is a "physical" order and sorted data and by far is faster than a non-clustered.. of course you know you...
November 6, 2011 at 11:24 am
I am not sure about the exact scenario and the situation but here is something that might help you in determining your solution:
declare @FirstTime datetime
declare @SecondTime datetime
set @FirstTime = '2011-11-05...
November 6, 2011 at 11:21 am
Viewing 15 posts - 61 through 75 (of 232 total)