Viewing 12 posts - 16 through 27 (of 27 total)
This was a stupid question because there were actually 3 correct answers.
sp_tableoption N'Employee', 'text in row', '2000'GO
sp_tableoption N'Employee', 'text in row', 'ON'GOsp_tableoption N'Employee', 'text in row', '2000'GO
sp_tableoption Employee, 'text...
March 2, 2004 at 9:31 am
I try to stay away from single table schemas for any solution. However, if I understand your question, I would simply have a table containing columns that could contain all the...
February 16, 2004 at 8:47 am
I am afraid that is not going to work lakshman. The tables referred to have some of the same columns in them and some different.
February 16, 2004 at 8:14 am
Your question is certainly valid, but you do not want to try and reference an index to accomplish your objective. One possibility for ordering your data in a linear format...
February 13, 2004 at 1:18 pm
I agree with dbamarks post. Likely what was taking place at the time of shutdown was a transaction that had been running for quite some time. It will likely take...
February 13, 2004 at 12:57 pm
Create a table (newtable) containing all the necessary columns
insert newtable(columnthatapplies1,2,3,4,n)
select column1,column2,3,4,n
from Servey1
insert newtable(columnthatapplies1,2,3,4,n)
select column1,column2,3,4,n
from Servey2
insert newtable(columnthatapplies1,2,3,4,n)
select column1,column2,3,4,n
from Servey3
February 13, 2004 at 12:54 pm
If the proc works when called from query analizer but not from your trigger I would suspect that there is a problem with the trigger. Specifically, I would suspect that...
January 28, 2004 at 9:12 am
Can you post the code for the trigger. Also, make sure that you do not have another trigger on the table that gets written to.
January 26, 2004 at 8:54 am
It may not be ideal for your case, but with the logic I proposed it is easy to go from A,B conditional B1 B2,C where you would skip B1 and...
January 23, 2004 at 1:04 pm
The suggestion presented would work, but as to your question about conditional logic in DTS, yes, there is a way. What you have to do is have the active-x step...
January 23, 2004 at 9:49 am
I agree with jordanac. I suggest pumping the oracle numeric data into a SQL varchar column. Then you can simply change the type of that column to float if it...
January 23, 2004 at 9:28 am
Viewing 12 posts - 16 through 27 (of 27 total)