Viewing 15 posts - 4,966 through 4,980 (of 26,490 total)
Question, how do we determine what year, week, month we are running the query for or is this based on the data in the table?
June 19, 2015 at 9:36 am
sqlinterset (6/19/2015)
tell me what confusion you have. I will start explaining in that terms.
Just how many different threads have you started asking this very same question???
Are wondering why you aren't...
June 19, 2015 at 9:30 am
sgmunson (6/18/2015)
Lynn Pettis (6/17/2015)
The problem is the commas in the string. Try this select statement:select CONVERT(NUMERIC(17,2),replace(@stg,',',''))
Yes, it will get rid of the commas, but it seems odd that a...
June 18, 2015 at 3:01 pm
Well, we can't see what you see so my guess in my previous post is all I got.
June 17, 2015 at 9:57 am
PearlJammer1 (6/17/2015)
yeah I have made a note of that comment from Gail and tried something different.I found this approach to be quite helpful
http://www.sqlservercentral.com/articles/Administration/2582/
Make it easier for others to follow: http://www.sqlservercentral.com/articles/Administration/2582/
June 17, 2015 at 9:54 am
Big topic. I'd start by reading about encryption in Books Online, the SQL Server Help Files.
June 17, 2015 at 9:50 am
gsdineshasm (6/17/2015)
Hi Yeswe are using
c:\Program Files\WinZip\WZUNZIP.EXE
I guess what I am asking is that you are sure that that program exists in the WinZip directory.
Not seeing the code attempting to...
June 17, 2015 at 9:49 am
This?
with basedata as (
select
MEAS_VALUE,
PAT_ID,
RECORDED_TIME,
rn = row_number() over (partition by PAT_ID order by RECORDED_TIME asc)
from
...
June 17, 2015 at 9:46 am
gsdineshasm (6/17/2015)
destination :\\ftp\unzip
work directory \\ftp\unzip
executable : c:\Program Files\WinZip
i am using expressing.
It is doing the unzip but getting this error
package process on server server1 has...
June 17, 2015 at 9:41 am
NineIron (6/17/2015)
Wonderful. I don't know how you folks come up with these solutions with so little code.Can this be tweaked to include things within only 2 non-weekend days?
Sounds like an...
June 17, 2015 at 9:38 am
Jeff Moden (6/17/2015)
June 17, 2015 at 9:34 am
Sanz (6/17/2015)
Thanks.
Now, explain how it works. You will have to support this code.
June 17, 2015 at 9:27 am
The problem is the commas in the string. Try this select statement:
select CONVERT(NUMERIC(17,2),replace(@stg,',',''))
June 17, 2015 at 9:21 am
Sanz (6/17/2015)
There is no need to guess. Here are few more examples._BF-TYPE:NICK_ _BF-SUBSYSTEM:SERVERS_
_BF-TYPE:CONFIG_ _BF-SUBSYSTEM:CARRIER_
_BF-TYPE:INSERT_ _BF-SUBSYSTEM:CARRIERS_
Still looks like the code works:
with TestData as (
select TestStr from (values ('_BF-TYPE:NICK_ _BF-SUBSYSTEM:SERVERS_'),('_BF-TYPE:CONFIG_...
June 17, 2015 at 9:16 am
Viewing 15 posts - 4,966 through 4,980 (of 26,490 total)