Viewing 15 posts - 1 through 15 (of 27 total)
January 13, 2017 at 9:52 pm
Is this a onetime load? I did a test with 10k rows and 90+ columns and was successful loading sample data. However, because it has to process row by...
November 25, 2014 at 9:36 am
I believe I can.
Do you have an example of the json data and the table you want to put it into?
Would you call a stored proc from SSIS...
November 19, 2014 at 5:00 pm
did you find a solution?
November 19, 2014 at 12:23 pm
Thanks, that worked as expected.
July 20, 2013 at 6:53 am
http://www.sqlservercentral.com/articles/JSON/68128/
Has 2008 version
April 23, 2013 at 11:47 am
I am not quite sure what you are trying to do. If one cell has a JSON format, what do you hope to do after the function returns a...
October 5, 2012 at 12:13 pm
I have been using schemas during the last 8 months and like the ability to "group" the objects. One spot I use it is with partitioned tables. I have...
May 9, 2010 at 7:58 pm
It should. You can test it out by setting the code to force the error:
declare @var tinyint
begin tran
Print 'I do not expect an error'
set @var=1;
if @@error <> 0
...
September 30, 2009 at 4:16 pm
Not at all, it really depends on your design. I certainly would not recommend it for every solution. Is storing and processing of XML data the best way...
September 28, 2009 at 10:28 am
Good question. I have not done any tests if it is quicker to use IF ELSE or CONTINUE. I used CONTINUE because it made the code easier to read...
September 23, 2009 at 3:42 pm
I have been using this for quite a while, although not as complete as it is now. In order to maintian compatibility with earlier versions of SQL Server, I...
September 23, 2009 at 8:49 am
Check out transparent data encryption now available in 2008. If this does not meet your needs please read Micheal's article and all the threads. One issue with the...
September 19, 2009 at 5:01 pm
Thanks for the replies. This thread was intended for the SQL 2000 DBA Toolkit Part 1 topic, somehow I messed up.
November 18, 2008 at 7:42 am
Viewing 15 posts - 1 through 15 (of 27 total)