Viewing 15 posts - 1 through 15 (of 34 total)
but is it possible to update a value in a sys table?!
April 20, 2016 at 3:42 am
Yes,it's true.
But before to transfer the data I have to truncate the destination table.
And if the stored procedure doesn't return the data I don't want to do the truncate.
What is...
February 11, 2016 at 3:07 am
Thank you, this functions properly.
I found the solution at this link too:
But is it some way to test how many records return the stored procedure?I need to transfer...
February 10, 2016 at 4:50 pm
I think this could function properly....select * from #t1 where 1 = (case when ididivision=100 and idcompany=1 or iddivision=240 and data between @beginLastYear and @endLastYear then 1
when...
November 13, 2015 at 2:17 am
I wanted to avoid 'insert into #table select * from table'... and only use 'select * into #table from table' simply because is too fast...
But I think that I'll...
September 29, 2014 at 8:34 am
My stored procedure is not so simple.I have a lot of values for that parameter and I have to do different things for every case.I can not use the same...
September 26, 2014 at 8:18 am
For me is very important to have the right order in the table.
For the first record I must to have the value of the first field of my original table,...
June 13, 2014 at 3:56 am
Thank you very much, I didn't have any idea how to do it.....
But if I insert another record in the table
insert into ##prova values ('$',2000)
Is it a way to have...
June 4, 2014 at 2:56 pm
You're right.
Unfortunately when I wrote the first post I didn't know the customer still uses 2005.
May 27, 2014 at 3:44 am
Do you know how can I do the same in sql server 2005?
This functions properly only in sql server 2008 and 2012.
May 26, 2014 at 7:47 am
Viewing 15 posts - 1 through 15 (of 34 total)