Viewing 15 posts - 2,581 through 2,595 (of 15,381 total)
dandenise316 (7/29/2015)
SELECT
DATE_TRUNC('month', n.campaign_date) <--- i want the date trunc to reflect ONLY the 1st - 23rd of every month. I then want to...
July 29, 2015 at 10:54 am
Robert klimes (7/29/2015)
July 29, 2015 at 10:39 am
dandenise316 (7/29/2015)
July 29, 2015 at 10:36 am
RRIOS42 (7/29/2015)
"testlname,testfname comment section > comment section testlname,testfname 6/30/2015 9:05:58 AM > testlname,testfname 6/30/2015 9:06:18 AM > comment section testlname,testfname 6/30/2015 9:10:05...
July 29, 2015 at 10:33 am
tomullus 69522 (7/29/2015)
July 29, 2015 at 8:56 am
Here is another alternative.
with Something(someVal) as
(
select '{_cpn}=1743; {_cpnll}=4511'
)
select xx.Item
from Something s
cross apply dbo.DelimitedSplit8K(s.someVal, ';') x
cross apply dbo.DelimitedSplit8K(x.Item, '=') xx
where xx.ItemNumber = 2
You can find the DelimitedSplit8K by following the article...
July 29, 2015 at 8:39 am
Here is some that will generate different text on every page load. http://www.lipsum.com/feed/html
July 29, 2015 at 7:53 am
PI28 (7/27/2015)
I want to migrate my table in Sybase to MsSQL. I am using SSIS for this, just truncating the destination mssql table and loading it from sybase. This...
July 29, 2015 at 7:51 am
info 58414 (7/29/2015)
Hi,why can i get the numeric values from this stiring?
{_cpn}=1743; {_cpnll}=4511
Result: 1743, 4511
Position and len of the value can be diffrent...
Thanks and Regards
Nicole
🙂
Not much detail here to work...
July 29, 2015 at 7:44 am
tomullus 69522 (7/29/2015)
I came upon an odd issue today:
I have a query that runs fine and at an acceptable speed (a few seconds). It looks like this:
select count(row_id) From table1...
July 29, 2015 at 7:40 am
jude.pieries (7/28/2015)
Msg 229, Level 14, State 5, Line...
July 29, 2015 at 7:26 am
owen_zeng (7/29/2015)
hi,my sql server version:sql server 2008 r2. if keep all the records, i think it may lead to
performance issue.does anyone have suggestions?
thanks !
I would suggest starting...
July 29, 2015 at 7:24 am
shpida (7/28/2015)
I am learning SQL, and I was looking for some free-form text as rows for data mining practice.
Seems to me there are three, four including mine, example in this...
July 29, 2015 at 7:18 am
SqlMel (7/29/2015)
I ALWAYS use Top 1 when assigning values to variables even though in all cases I can think of I use...
July 29, 2015 at 7:14 am
Viewing 15 posts - 2,581 through 2,595 (of 15,381 total)