Viewing 15 posts - 136 through 150 (of 859 total)
L' Eomot Inversé (11/5/2012)
opc.three (11/5/2012)
ACTION ITEMINACTION ITEM
in action figure
November 5, 2012 at 12:46 pm
The other issue could be running over 8060 bytes for a row. its possible since a varchar(100) can take up as much as 102 bytes. SQL Server...
November 5, 2012 at 12:37 pm
rmudway (11/5/2012)
Thanks for your response, that was a nice little piece of info. I found that my test machine had the whole DB in RAM, but the Main SQL...
November 5, 2012 at 12:12 pm
Cliff Jones (11/2/2012)
crookj (11/2/2012)
AppendOverwrite
over flow
November 2, 2012 at 4:07 pm
Since you are asking about the output the best thing to do is post some input and the complete query and expected results for the given input. what i...
November 2, 2012 at 3:25 pm
Sean Lange (11/2/2012)
If the list contained more values for manufacturer...
November 2, 2012 at 2:21 pm
Another method is with an OR in the where clause and use parenthesis to group your and conditions.
;with cte as
(
select 'Volvo' as CARS, 2001 as Year union all
select 'Volvo',...
November 2, 2012 at 12:24 pm
menon.satyen (11/2/2012)
Careful with the missing index DMV's. it may suggest 2 indexes with slight differences that could be accomplished with one index....
November 2, 2012 at 11:34 am
One thing to note is that sql server defaults to a clustered primary key. If the tables have a Primary key they most likely (Note: not always and certainly...
November 2, 2012 at 11:24 am
David92595 (11/1/2012)
Can Fields B, C, and D still be manually changed after the fact if need be? or are fields B,C, and D locked as computer values at that point?
With...
November 1, 2012 at 5:04 pm
David92595 (11/1/2012)
November 1, 2012 at 4:48 pm
you could also go with an evaluation copy. that would give you 180 days to license the server. however if you go that route i would not go...
November 1, 2012 at 4:11 pm
George M Parker (11/1/2012)
capnhector (11/1/2012)
Michael Valentine Jones (11/1/2012)
It is probably best if you avoid triggers completely until you have a lot of experience with SQL Server.
if designed properly and tested...
November 1, 2012 at 3:35 pm
pveilleux (11/1/2012)
I am about ready to install a new SQL Server to support a SharePoint installation, and need to acquire a SQL 2008 R2 license. We're just about...
November 1, 2012 at 2:58 pm
Michael Valentine Jones (11/1/2012)
It is probably best if you avoid triggers completely until you have a lot of experience with SQL Server.
i would tend to disagree. you need to...
November 1, 2012 at 2:04 pm
Viewing 15 posts - 136 through 150 (of 859 total)