Viewing 15 posts - 811 through 825 (of 6,486 total)
Stefan Krzywicki (12/6/2012)
L' Eomot Inversé (12/6/2012)
Brandie Tarvin (12/6/2012)
December 7, 2012 at 2:47 pm
You're not doing yourself any favors by denormalizing the data. It makes the query reasonably tortured. Should look something like:
;with
t1 as (select distinct cn from @t),
t2 as...
December 5, 2012 at 11:49 am
Sean Lange (11/7/2012)
Matt Miller (#4) (11/7/2012)
Sean Lange (11/5/2012)
yogi123 (11/5/2012)
I need to delete 1000 rows from table and it should do it batch wise.
means
i need to loop delete statement that delete...
November 7, 2012 at 10:56 am
Sean Lange (11/5/2012)
yogi123 (11/5/2012)
HelloI need to delete 1000 rows from table and it should do it batch wise.
means
i need to loop delete statement that delete top 1000 rows.
please help me
Why...
November 7, 2012 at 10:16 am
Brandie Tarvin (11/6/2012)
Anyone have any suggestions for me to...
November 6, 2012 at 7:56 am
Hans MZ (10/26/2012)
Son cientos de tablas pero cada una se manejará por separado. Una tabla a la vez.
Lo que no quiero es tener que personalizar la consulta para cada una...
October 26, 2012 at 12:32 pm
Steve Jones - SSC Editor (10/26/2012)
Still here, buried in presentation demo testing, which is not going well. #$%^$#% full text search
Different task over here, but "Buried" is a good way...
October 26, 2012 at 10:29 am
TravisDBA (10/22/2012)
October 22, 2012 at 11:02 am
Steve Jones - SSC Editor (10/22/2012)
L' Eomot Inversé (10/21/2012)
October 22, 2012 at 10:13 am
L' Eomot Inversé (10/19/2012)
Sean Lange (10/19/2012)
October 19, 2012 at 12:35 pm
Sorry about that, I was reformatting the XML after I pasted it in, and screwed up the stuff I posted as a result.
the corrected XML is
declare @x...
October 19, 2012 at 10:59 am
dwain.c (10/19/2012)
Wish I'd seen this thread sooner as I might have been able to help. Not that I claim to know that much...
October 19, 2012 at 10:14 am
Yup.. the nskf: represents a namespace alias. You should find more info as to what it actually is in the header of the schema file.
<xs:schema xmlns:nskf="http://SomeUri.com">
<xs:import namespace="http://SomeUri.com" schemalocation="some XSD...
October 17, 2012 at 2:24 pm
Try it this way:
with bob as (
select studentid, year, semester,
'Status1' StatName,
status1 as StatValue
from studstat
union
select studentid, year, semester,
'Status2' StatName,
status2 as StatValue
from studstat
union
select studentid, year, semester,
'Status3' StatName,
status3...
October 15, 2012 at 12:06 pm
Resender (10/11/2012)
Matt Miller (#4) (10/10/2012)
If you can dynamically build the connection string to...
October 11, 2012 at 10:22 am
Viewing 15 posts - 811 through 825 (of 6,486 total)