Viewing 15 posts - 16 through 30 (of 31 total)
Thanks Jason,
This could be good solution, I will work on this.
Thanks for your solution.
December 18, 2012 at 8:58 am
This is working fine when the source connection is SQL Server or Oracle.
When I change the datasource to Teradata it is throwing this error.
December 18, 2012 at 7:40 am
I have changed the datatype of the variable to Int64, still it is giving same error message
The actual count is 38044708, ans Int data type can handle this count.
declare @i...
December 18, 2012 at 6:09 am
Datatype is Int
I am assigning value of below query to the variable
select count(1) from Mytable
December 18, 2012 at 4:37 am
I am using temp table instead of cursor.
declare @spname varchar(100), @sptext varchar(max), @cnt int, @i int
select @spname = '', @sptext = '', @cnt = 0, @i = 1;
create table #spnames(id...
December 11, 2012 at 12:16 am
I thought it will conevert everything to int. As the expression eveluates from right to left so from the right first plus will return 121 (120 will be converted to...
August 21, 2012 at 1:10 am
Good question, my bad is I just ignored 1 so I checked only -1 and 25 I missed out 1 🙂
August 14, 2012 at 5:47 am
you can also check the below article from Pinal Dave
http://blog.sqlauthority.com/2009/05/03/sql-server-add-or-remove-identity-property-on-column/
July 17, 2012 at 12:42 am
Thank you very much, it is very clear now.
August 23, 2011 at 5:59 am
Did you heared that in T-SQL for Sql Server 2005.
As of now I know only Procedural Language in T-SQL.
Dividing the complex logic into small small parts and keep that in...
August 23, 2011 at 1:21 am
what is the version of SQL Server you are using?
August 22, 2011 at 5:17 am
Where is the question? or the topic itself is question?
October 26, 2010 at 5:59 am
The problem with Replcation is while replicating data from one server to another, if anything goes wrong or any other disaster like power failure or hardware failure happend then again...
September 6, 2010 at 8:42 am
Viewing 15 posts - 16 through 30 (of 31 total)