Viewing 15 posts - 42,481 through 42,495 (of 49,571 total)
mohd.imtiaz (12/9/2008)
Hi Gail,here is the table defination
Index definitions?
December 10, 2008 at 12:08 am
rbarryyoung (12/9/2008)
GilaMonster (12/9/2008)
December 9, 2008 at 4:06 pm
Joe (12/9/2008)
I want to do encryption in sql 2005 without modfiing any exsiting data structure or application? it that possible in sql 2005; pls hlep; thanks in advance.
What do you...
December 9, 2008 at 2:57 pm
Matt Miller (12/9/2008)
Funny - that's the EXACT reaction I got when I tossed it back....:)
Just about every time I've done a presentation or informal training and mentioned the problems of...
December 9, 2008 at 2:43 pm
Mike Feuti (12/9/2008)
December 9, 2008 at 2:40 pm
Matt Miller (12/9/2008)
while (@i<50000)
BEGIN
SELECT *
Into #tempTable
from MyHumongousTable --1,750,000 rows
update MyNewTable
set...
December 9, 2008 at 2:22 pm
Mike Feuti (12/9/2008)
--===== Insert the test data into the test table
INSERT INTO #test
(ID, email)
SELECT '10002','Walton@email.chop.edu' UNION ALL
SELECT '10004','craig.engstrom@wfhc.org' UNION ALL
SELECT...
December 9, 2008 at 2:17 pm
I still think my favourite has to be this piece of code that I found when one of the devs complained that the dev server was very slow. The same...
December 9, 2008 at 2:01 pm
Mike Feuti (12/9/2008)
I think I have what you need now.
Almost. Just need the create statement for the two temp tables please.
December 9, 2008 at 1:44 pm
Mike Feuti (12/9/2008)
Ok I'm fairly new at this but I'm trying.
That's fine.
I've edited the data you posted so that it looks the way we generally want it. Do you...
December 9, 2008 at 1:36 pm
pino_daddy (12/9/2008)
December 9, 2008 at 1:23 pm
TheSQLGuru (12/9/2008)
1) I wonder if that was actual rows returned or estimated?
Estimated. The optimiser works with estimated row counts and that's what it uses for its costings and plan....
December 9, 2008 at 1:19 pm
Grant did say it was untested. There's a misplaced bracket in the dateadd function.
SELECT s.ROW_ID, DATEADD(MINUTE,ISNULL(x.UTC_OFFSET,0),s.Created)
FROM S_SRV_REQ S
LEFT JOIN (SELECT TOP 1 tt.UTC_OFFSET, TT.START_DT
FROM S_TIMEZONE T
JOIN S_TIMEZONE_TEMP TT
ON T.ROW_ID =...
December 9, 2008 at 1:12 pm
pino_daddy (12/9/2008)
Want to know how to speed up the function. Rewite it better? Different code for the function, etc.
Remove it?
The way that SQL runs UDFs means that the...
December 9, 2008 at 11:43 am
Grant them view definition on the procedures, or on the entire dbo schema (but that will give them rights to see the definitions of tables, views, functions, etc as well)
GRANT...
December 9, 2008 at 11:30 am
Viewing 15 posts - 42,481 through 42,495 (of 49,571 total)