Viewing 15 posts - 151 through 165 (of 1,048 total)
enriquezreyjoseph (9/18/2013)
hi andrewwhat if i will insert in my status table, would the bio table be affected?
:unsure:
No it will not be affected..
September 18, 2013 at 11:21 pm
ok, you can use DelimitedSplit8K function to split the string by Jeff Modem
you can follow this link
http://www.sqlservercentral.com/articles/Tally+Table/72993/
declare @varchar table
( Name varchar(100)
)
INSERT INTO @varchar values ( '1,100,12345|2,345,433|3,23423,123|4,33,55')
SELECT ITEM
FROM @varchar
CROSS APPLY...
September 18, 2013 at 5:27 am
Check this link about Deferred name resolution you will find the answer:
http://technet.microsoft.com/en-us/library/ms190686(v=sql.105).aspx
September 18, 2013 at 3:45 am
pelsebubb (9/18/2013)
i still get that the column is read only after execution of :set IDENTITY_Insert tablename ON on the table.
what error you are getting?
Please post the code that you are...
September 18, 2013 at 3:38 am
Can you please post your code that you have written?
September 17, 2013 at 11:59 pm
isaac.a (9/17/2013)
Hi,I executed this in SQL server 2008 R2.
I found that the select statement returned 5.
But the answer says that create table will fail.
Can you please check this
Thanks.
Isaac
Did you...
September 17, 2013 at 10:56 pm
GilaMonster (9/16/2013)
Post the exact code, we can't tell what's...
September 16, 2013 at 6:53 am
Bhuvnesh (9/16/2013)
kapil_kk (9/16/2013)
September 16, 2013 at 6:50 am
Without seeing the actual code (or a working example of it) I'm assuming that your SELECT statement was being used to load data into every column EXCEPT the new column...
September 16, 2013 at 3:11 am
your requirement is not clear to us..can you please provide some more detail information what you exactly want?
September 13, 2013 at 11:09 am
Kurt W. Zimmerman (9/13/2013)
September 13, 2013 at 11:04 am
Are the numbers and special characters present at the last of the string only?
September 13, 2013 at 8:15 am
Carlo Romagnano (9/13/2013)
Clear and easy question!Thanks:-)
+1
September 13, 2013 at 12:54 am
Viewing 15 posts - 151 through 165 (of 1,048 total)