Viewing 15 posts - 4,381 through 4,395 (of 26,490 total)
Here is your answer.
WITH RowNums AS( -- This is to get values for calculations of the first and last values
SELECT v.pid, v.ListValues,
ROW_NUMBER() OVER(ORDER BY v.pid) rn,
COUNT(*) OVER()...
October 19, 2015 at 4:13 pm
ITU_dk2012 (10/19/2015)
October 19, 2015 at 4:00 pm
Now, one last thing, based on the sample data what is the expected results? This gives us something to check against and allows you to verify both your assumptions...
October 19, 2015 at 3:19 pm
ITU_dk2012 (10/19/2015)
If you both are experts in T-SQL Programming it doesn't mean that you should mock or make fun of other people who are just learning...
October 19, 2015 at 3:14 pm
Eric M Russell (10/19/2015)
October 19, 2015 at 3:08 pm
Run the following:
select date_time_txt, try_parse(date_time_txt as datetime2) testConvert
from hourly
where try_parse(date_time_txt as datetime2) is null;
Any results returned?
October 19, 2015 at 2:59 pm
Well, here's the problem. We can't see what you see from here. We have no idea what the process is that is extracting the data from Teradata. ...
October 19, 2015 at 2:46 pm
ITU_dk2012 (10/19/2015)
Your solution works fine. Now I need pull more columns from another table by joining it with the table which contains the list of values. For example I...
October 19, 2015 at 2:40 pm
Jeff Moden (10/18/2015)
Kristen-173977 (10/18/2015)
October 19, 2015 at 2:18 pm
latingntlman (10/19/2015)
I'm having a similar issue but the exit code is "12" while the expected was "0". I'm completely stuck and not sure what it means or where...
October 19, 2015 at 2:06 pm
The key here, is yes we have ideas, but we'd like to see some effort on your part instead of just expecting us to give you an answer that you...
October 19, 2015 at 2:00 pm
October 19, 2015 at 12:36 pm
Here is the update query initially post in a slightly more readable format:
UPDATE SERVICE_REQUEST
SET SERVICE_REQUEST_STATUS = 'PrintedOnPullReport'
,LAST_PRINTED_ON_REPORT_DATE = '2015-10-15 00:00:00'
,LAST_MOD_DATE_TIME = '2015-10-15 06:10:03.223'
,LAST_MODIFIER = 60417
,PRINT_REQUEST_ID = 69432
FROM SERVICE_REQUEST AS CollateralGroupRequest02
CROSS...
October 19, 2015 at 12:33 pm
mohant2305 (10/19/2015)
How to add a primary key for existing column in the tableSyntax ----- Help please
Start here: https://msdn.microsoft.com/en-us/library/ms190273(v=sql.110).aspx.
October 19, 2015 at 12:18 pm
Not sure how the DTA is going to help with a deadlock issue. Have you captured the deadlock graph to see where the deadlock(s) are occurring?
October 19, 2015 at 12:01 pm
Viewing 15 posts - 4,381 through 4,395 (of 26,490 total)