Viewing 15 posts - 4,816 through 4,830 (of 26,490 total)
brandonarrigo (7/17/2015)
July 17, 2015 at 9:13 am
Markus (7/17/2015)
We figured out the issue and fixed it. Thanks for your response.
How did you fix the issue? Others may have the same problem and you solution may...
July 17, 2015 at 9:00 am
s.raddy.89 (7/16/2015)
Yes I need to calculate the relative average for all months~!
I was actually looking for the formula you wanted for each of those months. In fact, how should...
July 17, 2015 at 8:57 am
s.raddy.89 (7/16/2015)
NameCostMonthYear
Dgjsdj384738740114
Dgjsdj3084895214
Dgjsdj64376482314
Now I want to calculate the relative average, meaning I go to Jan 2014, take the cost and divide it by average(cost in...
July 16, 2015 at 2:19 pm
Markus (7/16/2015)
July 16, 2015 at 12:10 pm
Here is another way to accomplish the task with no need to create a sort column in a CTE.
SET NOCOUNT ON;
DECLARE @TEST_NULL_SORT TABLE (AREA VARCHAR(50) NOT NULL, CATEGORY VARCHAR(50) NULL);
INSERT...
July 16, 2015 at 11:53 am
rourrourlogan (7/14/2015)
here's an example of what I am trying to do.
--Exec Database.Employees
--Use Database
--Go
--Create PROCEDURE AEM.TempTable
--AS
--BEGIN
--Select * into #emptemp From Database.Employees
--End
--Select * From #emptemp
Is something like this possible? I can get...
July 15, 2015 at 3:39 pm
Matt Miller (#4) (7/15/2015)
July 15, 2015 at 3:33 pm
Jeff Moden (7/8/2015)
derek.colley (7/10/2012)
July 15, 2015 at 3:24 pm
So, we are now in mid July, should I start looking at airline and hotel reservations for the Summit?
Not as concerned about getting a flight to Seattle as I am...
July 15, 2015 at 1:02 pm
Like this:
with SampleData as (
select TestData from
(values ('house:app.apx&resultid=1234,clientip'),('tost:app.apx&resultid=123,clientip'),('airplane:app.apx&resultid=123489,clientip'))dt(TestData)
)
select
substring(TestData,charindex('=',TestData) + 1,charindex(',clientip',TestData) - charindex('=',TestData) - 1),
TestData
from SampleData;
July 14, 2015 at 1:18 pm
Brandie Tarvin (7/14/2015)
Eirikur Eiriksson (7/14/2015)
Brandie Tarvin (7/14/2015)
Lynn Pettis (7/14/2015)
Eirikur Eiriksson (7/14/2015)
Lynn Pettis (7/14/2015)
Cannot create a row of size 8071...
July 14, 2015 at 12:02 pm
SQLRNNR (7/14/2015)
Ed Wagner (7/14/2015)
July 14, 2015 at 11:53 am
Eirikur Eiriksson (7/14/2015)
Lynn Pettis (7/14/2015)
Cannot create a row of size 8071 which is greater than the allowable maximum row...
July 14, 2015 at 11:14 am
Viewing 15 posts - 4,816 through 4,830 (of 26,490 total)