Viewing 15 posts - 2,746 through 2,760 (of 15,381 total)
This query is probably pretty simple once we know what it is supposed to do. The biggest problem here is that you don't have a well defined question. Without a...
June 19, 2015 at 1:25 pm
sqlinterset (6/19/2015)
June 19, 2015 at 12:39 pm
lmarkum (6/19/2015)
June 19, 2015 at 12:35 pm
ChrisM@Work (6/19/2015)
Sean Lange (6/19/2015)
Anybody have the mind reading apparatus? I have misplaced mine and could use it over here. http://www.sqlservercentral.com/Forums/Topic1696091-2799-1.aspx
I'm with Alvin on this one Sean - walk away. The...
June 19, 2015 at 10:09 am
Lynn Pettis (6/19/2015)
Sean Lange (6/19/2015)
Alvin Ramard (6/19/2015)
Sean Lange (6/19/2015)
Anybody have the mind reading apparatus? I have misplaced mine and could use it over here. http://www.sqlservercentral.com/Forums/Topic1696091-2799-1.aspx
I think this is one of...
June 19, 2015 at 9:58 am
Alvin Ramard (6/19/2015)
Sean Lange (6/19/2015)
Anybody have the mind reading apparatus? I have misplaced mine and could use it over here. http://www.sqlservercentral.com/Forums/Topic1696091-2799-1.aspx
I think this is one of those threads where one...
June 19, 2015 at 9:52 am
sqlinterset (6/19/2015)
tell me what confusion you have. I will start explaining in that terms.
Nothing about your expected results makes sense to me at this point. You have 12 rows in...
June 19, 2015 at 9:15 am
Anybody have the mind reading apparatus? I have misplaced mine and could use it over here. http://www.sqlservercentral.com/Forums/Topic1696091-2799-1.aspx
June 19, 2015 at 8:57 am
Taking your various posts I was able to piece together ddl and sample data.
create table #cs
(
[Year] float,
[Week] float,
[Month] float,
[C#] float,
[Dept] nvarchar(255),
[Issue] nvarchar(255),
[Type] nvarchar(255),
[Dept age] nvarchar(255)
)
INSERT INTO #cs
([Year], [Week], [Month],...
June 19, 2015 at 8:55 am
sqlinterset (6/19/2015)
create table #cs([Year] float,
[Week] float,
[Month] float,
...
June 19, 2015 at 8:21 am
Nice attempt at posting ddl and sample data. Unfortunately the table definition is incomplete and the sample data won't run as posted.
Why in the world are you storing Year...
June 19, 2015 at 8:13 am
Ed Wagner (6/18/2015)
Eirikur Eiriksson (6/18/2015)
Sean Lange (6/18/2015)
Eirikur Eiriksson (6/18/2015)
June 18, 2015 at 3:04 pm
Eirikur Eiriksson (6/18/2015)
June 18, 2015 at 2:26 pm
venkyzrocks (6/18/2015)
Need some help here,. See belwo :
Row Value :
Fiscal Year: 2016(
)Budget Scenario: Main Budget (0+12)(
)Forecast Scenario: Jun (0+12) Forecast(
)Department: 400 - New York(
)YTD Period: Jun
and I need to...
June 18, 2015 at 2:23 pm
SolveSQL (6/18/2015)
Try using this...DECLARE @totalcnt int
DECLARE @cnt1 int
DECLARE @cnt2 INT
SET @cnt1 = (SELECT COUNT(*) FROM table1)
SET @cnt2 = (SELECT COUNT(*) FROM table2)
SET @totalcnt = @cnt1 + @cnt2
INSERT INTO table3
SELECT @totalcnt
You...
June 18, 2015 at 1:58 pm
Viewing 15 posts - 2,746 through 2,760 (of 15,381 total)