Viewing 15 posts - 5,101 through 5,115 (of 15,381 total)
jhinch (4/23/2014)
April 23, 2014 at 1:51 pm
jhinch (4/23/2014)
April 23, 2014 at 1:40 pm
You don't specify any columns in your select statements.
INSERT INTO PARCS_DB.dbo.tbl_Utilities_CUB_LiveValue
(Value)
SELECT
FROM RTPCUBHIST_001.runtime.dbo.v_live
WHERE Tagname IN ('BOA001_STM_TOTAL.Total','BOA002_STM_TOTAL.Total','FQI_DW_A_01.Total')
The select portion needs to know what column(s) to...
April 23, 2014 at 1:11 pm
BrainDonor (4/23/2014)
There was an article on this quite some time back: http://www.sqlservercentral.com/articles/SELECT+*/68324/.
Just shoot me if I ever work in a place that uses that implementation!!! Even the author agrees it...
April 23, 2014 at 9:37 am
pdanes (4/23/2014)
Sean Lange (4/23/2014)
SELECT VLTO.SkupinaAutoID, cast(Replace(Replace(Replace(Replace(Replace(Replace(Replace(Replace(STUFF
...
April 23, 2014 at 8:57 am
Can you simply cast your stuffed column as a varchar?
SELECT VLTO.SkupinaAutoID, cast(Replace(Replace(Replace(Replace(Replace(Replace(Replace(Replace(STUFF
...
April 23, 2014 at 8:44 am
kumar4ashwani (4/23/2014)
how can i restrict the query on query window that contain *(astric)EXP:-
select * from emp
want to stop this king of query,only for the selected column should be allow.
Short...
April 23, 2014 at 8:39 am
Steve Jones - SSC Editor (4/21/2014)
The CDC stuff can get complex and be cumbersome to deal with, especially...
April 23, 2014 at 7:30 am
djj (4/23/2014)
I find reading MS help a bit confussing as there are a lot of see something else. If you are lucky they even include a...
April 23, 2014 at 7:26 am
Krishna1 (4/22/2014)
code sample
drop table a
go
create table a
(a1 integer identity, a2 integer)
go
drop table...
April 23, 2014 at 7:24 am
djj (4/23/2014)
technet
It is recommended that SET @local_variable be used for variable assignment rather than SELECT @local_variable. For more...
April 23, 2014 at 7:07 am
jennigirl (4/22/2014)
SELECT I.PartNumber, I.Description, I.TimeDateCreated as [Date Part Created], OI.TimeDateCreated as [Last Req Date]
FROM Item I
OUTER...
April 22, 2014 at 2:26 pm
john.p.lantz (4/22/2014)
April 22, 2014 at 2:12 pm
t-sql doesn't have a double but you can easily get the results you are looking for.
1/([NUM_STOP]-1.0) AS [TL Equivilent]
April 22, 2014 at 9:21 am
Viewing 15 posts - 5,101 through 5,115 (of 15,381 total)