Viewing 15 posts - 496 through 510 (of 600 total)
Thanks for all the advice, guys.
We'll get the populating procedure squared away first, and then maybe try some experiments to see which set up works best. It could be...
September 29, 2010 at 12:10 pm
Eugene Elutin (9/29/2010)
If it is absolutely impossible in your...
September 29, 2010 at 10:24 am
Eugene Elutin (9/29/2010)
Nevyn (9/29/2010)
On the subject of non-clustered indexes, the issue would be the number of columns to be included. Even though they are only at the leaf level,...
September 29, 2010 at 10:22 am
Grant Fritchey (9/29/2010)
September 29, 2010 at 10:05 am
Eugene Elutin (9/29/2010)
Give it a TRY! Create the Identity Clustered PK, create and index for columns used for filtering (WHERE clauses) and JOINs to another table. You may want to...
September 29, 2010 at 9:44 am
sandy-833685 (9/27/2010)
But its not hardcoded its an value which is stored in variable which is having a datatype as datetime. and after going through certain select and execution stored procedure.And...
September 27, 2010 at 1:42 pm
sandy-833685 (9/27/2010)
And when i try to execute the select statement with convert like
select * from tablename
where convert(varchar(10),time,103)<'06/06/2010'
as i...
September 27, 2010 at 12:29 pm
You could do a case statement that defaults them to a specific date if there isnt date information in the field ...
September 24, 2010 at 2:56 pm
A mini example I build. I think this does what you want:
CREATE TABLE #test (myDate varchar(6))
INSERT INTO #test (myDate) values ('200612')
INSERT INTO #test (myDate) values ('200705')
INSERT INTO #test (myDate) values...
September 24, 2010 at 2:02 pm
Its not a date if there's no day. Try appending '01' onto the field then converting.
September 24, 2010 at 1:27 pm
byrdmom2 (9/23/2010)
September 23, 2010 at 1:04 pm
Steve Jones - Editor (9/21/2010)
So lazy people are eventually capable?
Yeah, its TOTALLY on their to-do list.
September 21, 2010 at 2:39 pm
david_wendelken (9/21/2010)
Eric Russell 13013 (9/21/2010)
September 21, 2010 at 1:16 pm
Does it have to be from an SQL server stored procedure?
The main way I know of doing this is using WebDAV, which you can use with .NET to...
September 21, 2010 at 1:04 pm
Gary Varga (9/21/2010)
Is Googling for answers a big problem here?
I think so. So many find an answer that appears to work but never ensure they understand why it does what...
September 21, 2010 at 8:18 am
Viewing 15 posts - 496 through 510 (of 600 total)