Viewing 15 posts - 10,231 through 10,245 (of 15,381 total)
pierre.daubresse (10/29/2012)
October 29, 2012 at 9:47 am
pierre.daubresse (10/29/2012)
I have two tables (table A and table B), with a relation 1 to n (n being 0 to max 3).
I make a left join on these 2 tables...
October 29, 2012 at 9:03 am
Thanks for the ddl and sample data. It makes understanding what you are trying to do a lot easier and it makes helping possible.
I really can't quite wrap my head...
October 29, 2012 at 8:58 am
BriPan (10/29/2012)
why cant go for simple replace
declare @test varchar(100)='<test@gmail.com>;<test1@gmail.com>'
select REPLACE(replace(@test,'>',''),'<','')
it does matter how many email in columns.
what say?
Your test data doesn't match what the OP posted. Yours is just...
October 29, 2012 at 8:05 am
riaan-777462 (10/26/2012)
I'm quite inexperienced in returning XML from SQL and have only been using single tables to return normal XML in the past.
Now, however, I need to return multiple...
October 26, 2012 at 3:39 pm
harri.reddy (10/26/2012)
my table need to store timestamp in 1 column, for the record,hwo to create timestamp in sql create table
http://msdn.microsoft.com/en-us/library/ms182776%28v=sql.90%29.aspx
October 26, 2012 at 2:53 pm
SQL Wayne (10/26/2012)
October 26, 2012 at 2:51 pm
Luis Cazares (10/26/2012)
Sean Lange (10/26/2012)
October 26, 2012 at 2:29 pm
harri.reddy (10/26/2012)
i am goiing to store data like xyd345i dont knwo where to store in nvarchar or varchar
Well if you only need to store characters from the standard ASCII group...
October 26, 2012 at 2:21 pm
TheGreenShepherd (10/26/2012)
October 26, 2012 at 12:22 pm
I would also point out that based on the calculation in your query you are possibly not going to get the data you want. Even if you first convert your...
October 26, 2012 at 12:15 pm
scribesjeff (10/26/2012)
Can someone help me with this query? I have two columns both are INT and have dates stored in them as YYYYMMDD I need to use them to calculate...
October 26, 2012 at 12:10 pm
harri.reddy (10/26/2012)
i am getting files which data i need to store in table.
i need help with data type
for character i am usign varchar , do i need to use nvarchar...
October 26, 2012 at 12:08 pm
You should take a look at Gail's post about catch all queries here. http://sqlinthewild.co.za/index.php/2009/03/19/catch-all-queries/%5B/url%5D
I think once you read that you will get a pretty good idea of a good way...
October 26, 2012 at 12:04 pm
Well it looks like Lowell beat me to the punch on this one. I rolled my own version, which also uses the DelimitedSplit8K function. 😉
;with cte as
(
select 1 as...
October 26, 2012 at 11:04 am
Viewing 15 posts - 10,231 through 10,245 (of 15,381 total)