Viewing 15 posts - 136 through 150 (of 241 total)
I got a 3th party tool that fetches the data via my api key from the game server.
The developer recently made some changes to the structure of the api, but...
September 13, 2011 at 7:34 am
I had a mirroring up one time to test how that worked but it's been inactive for months now and the reports always got generated from the original.
Which was odd,...
September 13, 2011 at 7:03 am
Closing and reopening doesn't help, I notice now that most recent data gets loaded but like 2-3 hours after that data was inserted/altered.
September 13, 2011 at 6:22 am
Sorry for this late response I've been buried in an urgent project.
No I haven't scheduled the reports yet, its in the report designer in Visual Studio where it stopped collecting...
September 13, 2011 at 5:51 am
In a personal database project I've been using a temp tables in all my udf's cause I need results that I can't generate with my current tables.
July 22, 2011 at 6:53 am
That's the path I've chosen and with a cte I managed to get part of the data I want, it allso gives me the opportunity to make some further calculations.
I...
July 11, 2011 at 5:37 am
declare @pi varchar(20)
declare @piid int, @pil int
set @pi = 'Enriched Uranium'
select @piid = PIMatID,@pil = PILevel from planetaryInteraction.PIMaterials where PIName = @pi
print @piid;
with PlanetI(PIMatID, PIName, PILevel, IsChild,AmountNeededNextLevelOne,AmountNeededRequestedLevelOne,Level,Cost)
as
(
select pim.PIMatID, pim.PIName, pim.PILevel,...
July 7, 2011 at 8:03 am
Ok explanation & code
In EvE Online everything you can buy and sell on the markets are items created by the players, by either mining or processing raw materials.
A while back...
July 6, 2011 at 1:22 am
Well to answer bluntly (no offfence) there is no way to learn it from the metadata.
temp tables are created in the TempDB, they are owned by it and are part...
July 5, 2011 at 6:14 am
It might have worked for you for a while, but remember for others who haven't worked on it can be confusing if the code you give references to tables that...
July 5, 2011 at 4:18 am
I will not go so far as to yell at you, but this is a question which answer can be found almost every lesson 2 of sql.
July 5, 2011 at 3:34 am
So the trigger looks like this
CREATE TRIGGER trig_Consumables
ON ReceiveOrder
FOR UPDATE
AS
BEGIN
UPDATE Consumables SET Quantity = U.Quantity + I.q1 FROM Consumables U INNER JOIN Inserted I ON U.Product = I.Product
END
It will be...
July 5, 2011 at 3:15 am
Viewing 15 posts - 136 through 150 (of 241 total)