Viewing 15 posts - 7,126 through 7,140 (of 7,636 total)
I am confused. Why isn't robert's answer sufficient?
April 16, 2008 at 8:45 pm
Jeff Moden (4/16/2008)
from dbo.dwTreatment tvp join dbo.TreatmentVisit tv
on ...
April 16, 2008 at 8:38 pm
Jeff Moden (4/16/2008)
escaleraroyal (4/16/2008)
Vendor says the same applicationX runs fast in another company1 which has a higher volumne of data. He thinks it's our clustering server that is causing the...
April 16, 2008 at 7:40 pm
At a minimum you need to 1) script out the a_District table and 2) do as Ninja asked and add a "Print @cmd" to your p_trigger procedure right before the...
April 16, 2008 at 7:29 pm
FYI: It is my understanding that as of SQL Server 2005, there is no longer any original SyBase code in SQL Server and that the licensing restrictions no longer...
April 16, 2008 at 7:11 pm
You'll have to give us more information.
Here is a link that explains how: http://www.sqlservercentral.com/articles/Best+Practices/61537/
April 16, 2008 at 7:00 pm
Well, a derived table IS a subselect (as Gail pointed out to me once).
Anyway, i am just guessing since we do not really have enough information to complete this, but...
April 16, 2008 at 5:38 pm
Why don't you want to do Backup/Restore? It is probably your best choice.
April 16, 2008 at 4:52 pm
Its Wikipedia. People can post their opinions as facts anytime they want to.
It is however an absolute fact that Denormalization can, in some cases, dramatically improve performance and that...
April 16, 2008 at 1:33 pm
Select GolferID, t2.CourseID
, t2.Hole1 - t1.Hole1
, t2.Hole2 - t1.Hole2
, t2.Hole3 - t1.Hole3
From Table2 t2
Join Table1 t1 ON (t1.CourseID-t2.CourseID)
April 16, 2008 at 12:31 pm
Select SERVERPROPERTY('IsIntegratedSecurityOnly ')
April 16, 2008 at 11:39 am
gtan018 (4/16/2008)
Thank you for your reply. I've tried the EXCEPT and it only returns the value that was on table1. I need it to calculate the difference.
This IS the difference...
April 16, 2008 at 11:28 am
Yes, data types NCHAR and NVARCHAR would allow you to store most any language. Sorting/collations are more complicated though.
April 16, 2008 at 11:00 am
Well, you can't really call it SQL "Injection" since they were actually trying to execute raw URL text as SQL. More like "SQL Suction".
April 16, 2008 at 10:53 am
select Col1 from Table1
EXCEPT
select Col1 from Table2
April 16, 2008 at 10:37 am
Viewing 15 posts - 7,126 through 7,140 (of 7,636 total)