Viewing 15 posts - 16 through 30 (of 118 total)
I like your idea and infact I practice using BIT in my projects.
July 20, 2016 at 7:02 am
Try this syntax:
ALTER TABLE {TABLENAME}
ADD {COLUMNNAME} {TYPE} {NULL|NOT NULL}
CONSTRAINT {CONSTRAINT_NAME} DEFAULT {DEFAULT_VALUE}
[WITH VALUES]
July 20, 2016 at 6:40 am
You can do it using CHECK Constraint.
July 20, 2016 at 6:39 am
text datatype is supported in SQL 2012 but will be deprecated in future versions.
alternative is to use varchar(max) and if you need multilingual support use nvarchar(max) datatype.
Thanks,
Durga
July 12, 2016 at 11:35 pm
wow thats great, I didn't expect it to be that straight forward approach.
July 12, 2016 at 5:08 am
Thank you, that's what exactly I am looking for and its helped me a lot.
I will focus on XML schredding further and learn about it deeper.
July 10, 2016 at 10:36 am
I know shredding XML but not an expert, that's why posted here so that I can get some inputs.
I am not expecting spoon feeding but a basic approach...
July 9, 2016 at 9:55 am
Any idea how to resolve my XML requirement?
July 9, 2016 at 7:39 am
I think you would like to save the complete result set i.e. 35 rows into variable.
follow this:
DECLARE @tblV Table
(
v varchar(max)
)
INSERT INTO @tblV(v)
SELECT ProductName
FROM tblProducts
Alternatively, if you would like...
July 8, 2016 at 4:53 am
That's a good step indeed.
XML is platform independent technology and very powerful.
To start with refer to this URL: https://www.mssqltips.com/sqlservertip/3141/importing-xml-documents-using-sql-server-integration-services/
XML data processing involves shredding, parsing, transformations using XSD stylesheets.
Also the multilevel...
July 7, 2016 at 5:16 am
your rows per page expression is good enough.
check if this works: put the subtotal before the rows per page expression and put the grand total after the rows per page...
July 7, 2016 at 12:12 am
Have to tried with this:
download the service pack 1 (https://www.microsoft.com/en-us/download/confirmation.aspx?id=46694) and install it.
also check the solutions provided in the following URL:
July 6, 2016 at 6:51 am
Viewing 15 posts - 16 through 30 (of 118 total)