Viewing 15 posts - 21,526 through 21,540 (of 22,184 total)
Should I tape a full two-hours?
That'd be slightly more interesting than the yule log on TV.
November 2, 2007 at 9:40 am
Up in the Peoples Republic of Massachusetts we don't worry too much about cooling the house, but this GeoThermal heating sounds a heck of a lot better than the two...
November 2, 2007 at 9:14 am
I'll hazard a wild guess and suggest... compile time. That's one large plan. You can test this by going to a non-production server, run the view to get it to...
November 2, 2007 at 8:45 am
SELECT *
FROM Table1
JOIN Table2
ON Table1.Key = Table2.Key
JOIN Table3
ON Table1.Key = Table3.Key
This assumes that the PK on Table1 matches an FK on Table2 & Table3. Either way, you can then use...
November 2, 2007 at 7:11 am
day (11/1/2007)
Can anyone help me with this?
SELECT...
November 2, 2007 at 7:08 am
kev_byrne (11/2/2007)
The SQL when run directly against the DB, on the...
November 2, 2007 at 7:03 am
This is unlikely to run very fast, 43 seconds on my machine against 54 million rows, but it'll work.
WITH x AS (SELECT b.[ID]
,b.[Date]
,b.[Value]
,ROW_NUMBER() OVER(ORDER BY b.[ID]) AS RowNum
FROM [BigTable] b
)
SELECT...
November 2, 2007 at 6:55 am
Johannes Fourie (11/2/2007)
Then remove the ORDER BY in the...
November 2, 2007 at 6:46 am
Thinking about it more, you should be able to get reasonable performance, even pivoting the data, assuming the indexes are clean, especially the clustered indexes. How did you set those...
November 2, 2007 at 5:39 am
Unfortunately, I'm going out of town for a week, but posting a bit of code could help someone else to help you.
Based on the requirements... 30 fields each 100 characters...
November 2, 2007 at 5:37 am
The one time I did manage a VLDB, we sure has heck ran the log backups more frequently than once a day, but then it was an OLTP system. I'm...
November 1, 2007 at 12:43 pm
Bob Fazio (11/1/2007)[hrComplaints come from many sources. A stable system is a good goal too. Performance is also a goal. If you haven't noticed before a high...
November 1, 2007 at 9:37 am
Please, a syntax check on the XQuery. It's my first time out of the gate with this and I'm not sure I'm avoiding stupidity successfully.
November 1, 2007 at 6:00 am
Neither full text or xml has me terribly excited. If it were my project, I'd be reexamining the assumptions and trying to find a method of defining the requirements more...
November 1, 2007 at 5:20 am
Viewing 15 posts - 21,526 through 21,540 (of 22,184 total)