Viewing 15 posts - 361 through 375 (of 860 total)
ok here is the code. it gets a little nasty and relies on there always being 5 elements to each series and an id.
--SET up some sample data
DECLARE @String...
May 3, 2012 at 4:16 pm
crookj (5/3/2012)
capn.hector (5/3/2012)
Ray K (5/3/2012)
ChrisM@Work (5/3/2012)
bopeavy (5/3/2012)
Ray K
EL Jerry (5/2/2012)
--------------------------------------------------------------------------------
bopeavy (5/2/2012)
--------------------------------------------------------------------------------
hypothesis
Hypothermia
hypochondriac
hypothalamus
Beta thalassemia
Beta release
windows vista
Windows ME :crazy:
Mighty Excrement
May 3, 2012 at 1:22 pm
Ray K (5/3/2012)
ChrisM@Work (5/3/2012)
bopeavy (5/3/2012)
Ray K
EL Jerry (5/2/2012)
--------------------------------------------------------------------------------
bopeavy (5/2/2012)
--------------------------------------------------------------------------------
hypothesis
Hypothermia
hypochondriac
hypothalamus
Beta thalassemia
Beta release
windows vista
May 3, 2012 at 12:58 pm
some what on topic: http://www.sqlservercentral.com/Forums/Topic1294729-392-1.aspx i am starting to get to the end of my knowledge on this one. also am i at least looking in the right...
May 3, 2012 at 12:57 pm
pamozer (5/3/2012)
May 3, 2012 at 11:10 am
can you post the execution plans for each query. i think since ISNULL() is not SARGABLE it is causing an index scan which is slow to begin with. ...
May 3, 2012 at 10:48 am
I think this is a big issue but im new to performance tuning so i may get a lesson as well.
this section of code in each where clause (or most...
May 3, 2012 at 10:37 am
pamozer (5/3/2012)
Any thoughts? I tried using with recompile...
May 3, 2012 at 9:56 am
Steve Jones - SSC Editor (5/3/2012)
May 3, 2012 at 9:46 am
marksquall (5/3/2012)
-Actually that is what I read already in other post that you cannot update/delete all tables with one single query, each table has it's own dedicated [font="Courier New"]UPDATE[/font] query...
May 3, 2012 at 9:30 am
vinu512 (5/3/2012)
capn.hector (5/2/2012)
vinu512 (5/1/2012)
This does:
SSelect * From ClientDetails
Where InterviewDate IN (Select MAX(InterviewDate) From ClientDetails Group By ClientID)
the problem with that query is the IN list contains the max interview date...
May 3, 2012 at 6:34 am
Im having some dificulty understanding what you want out. also readily consumable DDL and Sample data would help us out a lot. please see my signature for the...
May 3, 2012 at 6:29 am
after running your SP and getting the error check @@TRANCOUNT and see what you have. i would guess you have a commit in the code some where it should...
May 3, 2012 at 6:25 am
You stated the DB was 4 TB before the purge what about after. as GSquared has eluded to if you have a massive amount of data to delete it...
May 2, 2012 at 1:01 pm
a2zwd (5/2/2012)
I have a field in my table which has values in minutes.
I need to convert to hours. I am doing this as
CAST(col1/60 AS VARCHAR(6)) + ':' + CAST(col1%60.0...
May 2, 2012 at 9:51 am
Viewing 15 posts - 361 through 375 (of 860 total)