Viewing 15 posts - 4,381 through 4,395 (of 5,685 total)
Jeff Moden (1/14/2011)
January 14, 2011 at 3:25 pm
dajonx (1/14/2011)
I understand that all of the categories are important, but is there some sort of "ranking" that I could use as a guideline? In your example,...
January 14, 2011 at 3:21 pm
Dj463 (1/14/2011)
I need a dynamic sql script to loop through all the tables in a database and delete records older than certain date.
Note: i dont want to use sp_msforeachtable...
January 14, 2011 at 1:54 pm
@BaldingLoopMan: Loop code has its place, but when the OP specifically states things are taking too long, it's time for that method to move on. In general: if they're...
January 14, 2011 at 1:26 pm
AndrewSQLDBA (1/14/2011)
What I am wondering...
January 14, 2011 at 1:12 pm
GilaMonster (1/14/2011)
Index on row_id and it should be OK, though not great performance.
select *
from Table_1 a
inner join Table_1 b on a.rowid = b.rowid -...
January 14, 2011 at 12:52 pm
This is a performance hog, and if this is something you need to regularly run rather than as a cleanup item for the next few days, I'd recommend looking into...
January 14, 2011 at 11:33 am
Something like this?
select
HandheldDeviceActivityID,
Device,
UploadDevice,
DownloadAppVersion,
UploadAppVersion,
REtry,
Received,
UploadFileGuid,
Processed,
Created,
ReceivedDate
from
HandHeldDeviceActivity
where
companyid = 1
and created > '2010-12-1'
--Absolute of diff in minutes between these two time fields.
AND ABS( datediff(...
January 14, 2011 at 11:26 am
pwalter83 (1/14/2011)
Here is the updated scenario:
If POL_COUNTRY_CD or POD_COUNTRY_CD in NCV_BL_DHL_TEMP table begins with FR, then use POL_Location_CD / POD_Location_CD and join to MG_LOCATION table to identify continent. If...
January 14, 2011 at 10:57 am
djackson 22568 (1/13/2011)
Todd Payne (1/6/2011)
On the other hand, if you look at the British SAS (generally considered the worlds best special forces people),
Yeah, by the Brits! The Australians...
January 14, 2011 at 10:34 am
^ What he said, or alter your source table to store the data at the proper precision, which looks like you want decimal ( x, 2).
January 13, 2011 at 12:47 pm
WayneS (1/13/2011)
Stefan Krzywicki (1/13/2011)
I wonder how many kids these days actually have tiddlywink sets.I just wonder how many of you kids know what tiddlywink sets are! :w00t:
They were those things...
January 13, 2011 at 12:43 pm
GSquared (1/13/2011)
January 13, 2011 at 12:08 pm
WayneS (1/13/2011)
LutzM (1/13/2011)
Any of the Threadizens interested in a performance tuning project in the Los Angeles area? Drop me a PM.
You're in the LA area? I thought you were in...
January 13, 2011 at 12:07 pm
Viewing 15 posts - 4,381 through 4,395 (of 5,685 total)