Viewing 15 posts - 1 through 15 (of 18 total)
wow, I think this is the first question I asked on the board that didn't generate a quick reply.
Is my question confusing? Or is there some reason nobody uses transactions...
January 14, 2009 at 7:53 am
ok, that's definately stuff I want to keep an eye on.
at first I'd say most intense queries would be intercept checks, and that would return on average between 5 and...
December 22, 2008 at 1:38 pm
thanks, I think your right about sticking them in one table...I'm just so use to normalizing stuff out that I always try to put different things in different tables.
The point...
December 22, 2008 at 12:25 pm
Haven't created any spatial indexes yet.
Maybe I don't need to overlay them now th I think about it.
For example, say I have 100 X 100 grid, with 10X10 polygons so...
December 19, 2008 at 7:57 pm
yeah, i'd love to duplicate a bad execution, the problem is I can't duplicate it. It just happens to users once in awhile. For instance the procedures in...
August 18, 2008 at 9:17 am
I definately appreciate grant's commentary on the dangers of these table hints, but I guess I don't see how they could be an issue in my situation. Dirty data...
August 18, 2008 at 9:08 am
I realize the data will be dirty, and it's ok since the data is merely being used for a report to the user, not in any actual transactions or calculations.
The...
August 15, 2008 at 9:31 am
I'm sure someone smarter then me may come along with a good recommendation, but I think what your asking for is to pivot the table. Check this article...
April 11, 2008 at 9:40 am
cool, I got it working, thanks guys.
February 12, 2008 at 2:12 pm
I may be misunderstanding your question....but wouldn't it just be
Declare newText as varchar(1000)
SELECT
SET newText = Field1 + Field2
FROM
textTable
INSERT INTO otherTable
(textfield)
VALUES
(newText)
I'm a newb myself, so I may be way...
January 17, 2008 at 10:14 am
I'm sorry, yes that's exactly what I'm doing. I'm passing in a status value to a stored procedure as a parameter, and it's being compared to a column...
December 26, 2007 at 1:48 pm
I don't really need to search it as a string...I just have a table that has a column "Status" and the status is an int based value. I...
December 26, 2007 at 12:55 pm
Ok I think I figured out what I need...
@Inst_ID int,
@status char(1)
SELECT
Inventory.Car,
Inventory.StockNumber,
SUM(InventoryService.FinalCost) As TotalCost
FROM Inventory
LEFT JOIN InventoryService ON Inventory.Inventory_ID = InventoryService.Inventory_ID
WHERE
Inventory.Inst_ID = @Inst_ID AND
Inventory.Status LIKE @status
GROUP...
December 7, 2007 at 2:37 pm
Thanks for the recommendations, I see my problem with some of my earlier ideas was that I wasn't using brackets correctly.
I like the idea of evaluating the passed...
December 6, 2007 at 7:10 am
wrong forum... but here is the answer, it uses some 2005 functionality though with the rownumber and over statements
I need UPDLOCK and READPAST hints together. As explained here
So my statement...
November 26, 2007 at 3:10 pm
Viewing 15 posts - 1 through 15 (of 18 total)