Viewing 15 posts - 10,336 through 10,350 (of 13,879 total)
I would hate taking over the maintenance of a database which contained triggers like this. On behalf of those who may have to maintain your code in future, please reconsider....
December 4, 2012 at 7:44 am
inmallinath (12/4/2012)
When you launch any of the office applications, it starts to install the software.
Am I...
December 4, 2012 at 6:29 am
Saintmount.Sql (12/3/2012)
But I want to insert below selected values to another table by random way.
Ex:
select Distinct code_id from Pri_codes_master
where code_description like '%assignment%'
--ORDER BY NEWID()...
December 4, 2012 at 3:33 am
As far as I know, the format of files generated by either the 32-bit version or the 64-bit version of Excel is exactly the same - so referring to '32-bit...
December 4, 2012 at 12:58 am
You've made it more complex than it needs to be - no need for the SQL Server variable. Just this should be fine:
select top 1 code_id from Pri_codes_master
where code_desc...
December 2, 2012 at 5:12 am
You just have to remove the FK relationship which is preventing the deletion first:
update fk_test
set fno = null where fno = 5
delete fk_test where eno = 5
select * from fk_test
November 29, 2012 at 3:16 am
I wrote the above response before trying Craig's solution, which certainly does the business - thanks! Maybe this is one instance where a loop is the best solution. I'll leave...
November 29, 2012 at 2:02 am
First of all, thanks to everyone who has taken the time to think about this problem and contribute. I spent over an hour blowing recursion limits left, right and centre...
November 29, 2012 at 1:56 am
rhythm.varshney (11/27/2012)
Phil Parkin (11/27/2012)
If you want to put an SSIS 'wrapper' round it, something...
November 27, 2012 at 10:51 am
There is no good way of doing this in SSIS - I'm with Jeff on this one.
If you want to put an SSIS 'wrapper' round it, something like this would...
November 27, 2012 at 7:23 am
rhythm.varshney (11/26/2012)
waiting for your valuable input guys........
You still have not asked a single question - there is nothing to respond to.
November 26, 2012 at 11:47 am
Have you tried {CR}{LF}?
November 26, 2012 at 10:20 am
In your Flat File connection manager, what is the value of the Row Delimiter property?
November 26, 2012 at 10:04 am
rhythm.varshney (11/25/2012)
Phil Parkin (11/25/2012)
rhythm.varshney (11/25/2012)
Phil Parkin (11/25/2012)
So what is your question?
I need to import the data into the table.The logic is If Type is MSAD then it should update MSAD...
November 25, 2012 at 5:23 am
Viewing 15 posts - 10,336 through 10,350 (of 13,879 total)