Viewing 15 posts - 556 through 570 (of 754 total)
And the issue with from and join names was pointed out here also: https://www.sqlservercentral.com/forums/topic/procedure-expects-parameter#post-3964459
This appears to be one of at least four different posts about the same query. Are you...
December 17, 2021 at 2:26 pm
Appears to be a variation on https://www.sqlservercentral.com/forums/topic/procedure-expects-parameter
December 16, 2021 at 5:37 pm
To avoid ambiguity, it's better to use columname >= startdatetime and columname < enddatetime -- 2021-04-01 would appear to be the enddatetime you want in your example (assuming you want...
December 16, 2021 at 5:33 pm
You are selecting from [@IND_ORLS] & joining [@IND_RLS1], but there are no table-valued-parameters w/ those names and no table types of those names declared & populated in the procedure. And...
December 16, 2021 at 5:02 pm
You haven't posted your CTEs, just a query that appears to reference four CTEs (OPTION_LIST_NEAR_TERM_CTE, NEAR_TERM_STRIKE_MIN_MAX_CTE, TIME_CTE, & DISCOUNT_RATE_CTE), so we can't know either.
Can you post DDL for the tables...
December 13, 2021 at 8:12 pm
"I have such tables
1) UDT_CKB_SNAPSHOT - list of different items and events (items on sale) some promotions etc
2) FCSTPERFSTATIC - Forecast
3) HISTWIDE_CHAIN - Actuals"
You are being asked to provide scripts that...
December 9, 2021 at 2:15 pm
What size of drive?
What version of Windows? 7 or 8?
Dell?
December 7, 2021 at 6:08 pm
This is a duplicate of https://www.sqlservercentral.com/forums/topic/problem-understanding-sum-function-with-group-by
December 7, 2021 at 4:01 pm
Glenn,
You need a license for CData's API Server if that's what you're trying to use -- according the message, you can request a trial license. API Server is a paid...
December 3, 2021 at 7:41 pm
I recommend creating a matrix (e.g., in a spreadsheet) for yourself when working with such problems so that you can visualize the options that result in true:
PARAMETER...
December 2, 2021 at 11:24 pm
Here's a way to grab first name:
DROP table IF EXISTS #users;
create table #users
(
user_name VARCHAR(255) NOT NULL PRIMARY KEY
...
December 2, 2021 at 8:39 pm
max doesn't appear to directly correlate to values in any of the columns What is max/how is it derived?
xp is apparently experience, and count is # of rows for experience value.
December 2, 2021 at 7:12 pm
I missed that reviewing MS doc for data types. Thank you.
I worked in 2008 for a few years, but have not for a while now.
December 1, 2021 at 10:28 pm
Viewing 15 posts - 556 through 570 (of 754 total)