Need to minimize the space in the tables, Help?

Hi
I am designing a website for a family friends Company, running off a small template edited the hell out of the logos etc;
now i need less space between the topheader with the frog and thebottom footer.
I dont have much expirence with tables with website design and thats what this template is designed under.
can anyone help me with these damn tables??
Template Link : http://members.iinet.net.au/~brodie.botto/Templates/index.dwt
Site Link http://members.iinet.net.au/~brodie.botto/
Brodie

G'day Brodie
Please copy and paste the following markup into a new document and view in your favourite browser.
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
<style>
body {
    width: 978px;
    margin: auto;
.header {
    background: url(http://members.iinet.net.au/%7Ebrodie.botto/images/01_company_02.jpg) no-repeat;
    height: 125px;
    margin-top: 50px;
.header img {
    float: right;
.article {
    padding: 20px;
.footer {
    height: 123px;
</style>
</head>
<body>
<div class="header">
  <img src="http://members.iinet.net.au/~brodie.botto/images/01_company_03.jpg" alt="MenuBar">
</div>
<div class="banner">
  <img src="http://members.iinet.net.au/~brodie.botto/images/01_company_05.jpg" alt="Regent Cleaning Chemicals">
</div>
<div class="article">
    <h2>Heading</h2>
  <p>Exploiting the productive lifecycle building flexibility through spreading knowledge and self-organization, the strategic vision - if indeed there be one - is required to identify. Whether the organization's core competences are fully in line, given market realities an important ingredient of business process reengineering maximization of shareholder wealth through separation of ownership from management. To experience a profound paradigm shift, to focus on improvement, not cost, quantitative analysis of all the key ratios has a vital role to play in this. As knowledge is fragmented into specialities by moving executive focus from lag financial indicators to more actionable lead indicators, that will indubitably lay the firm foundations for any leading company.</p>
  <p>Working through a top-down, bottom-up approach, the strategic vision - if indeed there be one - is required to identify quantitative analysis of all the key ratios has a vital role to play in this. Whenever single-loop learning strategies go wrong, presentation of the process flow should culminate in idea generation, the three cs - customers, competition and change - have created a new world for business. Through the  adoption of a proactive stance, the astute manager can adopt a position at the vanguard. Working through a top-down, bottom-up approach, empowerment of all personnel, not just key operatives, the strategic vision - if indeed there be one - is required to identify.</p>
</div>
<div class="footer">
  <img src="http://members.iinet.net.au/~brodie.botto/images/index_130.jpg" alt="footer">
</div>
</body>
</html>
Then chuck the template that you have been using.
Gramps
Carn the Pies

Similar Messages

  • I need to minimize the space photos take on my MacBook Pro OSx 10.7.  They are in iPhoto, Aperture, Pictures/Photo Library, etc.  Are they taking space in all of these locations?

    I need to minimize the space photos take on my MacBook Pro OSx 10.7.  They are in iPhoto, Aperture, Pictures/Photo Library, etc.  Are they taking space in all of these locations?

    Are they taking space in all of these locations?
    It depends on how you are using iPhoto and Aperture. 
    iPhoto and Aperture each create their own library files, and the default location for them is in /users/youruseraccount/Pictures
    You can configure iPhoto and Aperture to use the same Library file, in which case your photos are only stored once.  But if you are using iPhoto & Aperture with independent library files, you may in fact be duplicating your storage.
    The second consideration is whether or not you have configured iPhoto and/or Aperture as reference libraries, in which case their library files only reference photos you have stored in other places on your hard drive.  Setting them up as reference libraries does not duplicate the photos inside the library files.

  • I have duplicated a sheet and need to rename the tables in the duplicate.  Can anyone help me?

    I have duplicated a sheet in Numbers and need to rename the tables in the duplicate sheet to avoid circular references.  Can anyone help me?

    Hi Pacarina,
    I'm not sure if this is your question (I'm puzzled by your mention of circular references) but this is how you change a table name in Numbers 3. Select the table (click on it), then make sure Table Name is checked in the Table tab of the format panel, then edit the name directly where it appears above the table.
    SG

  • Need to know the table for sales org and sales area of role Sold-to  in CRM

    Dear Sir,
    Our server is CRM 5.0, I would like to download the data from CRM , however, I would like to know the table name which keep the sales org and sales area of role Sold-to  in T-code : BP . However, we can't find the actualty table.
    Please kindly advise.
    Thank you
    Lek

    Hi Vimol,
    You can get Org details in various tables like Sales Org, Division, Distribution Channel in following tables with help of PARTNER_GUID.
    Sales :
    CRMM_BUT_LNK0010
    CRMM_BUT_LNK0011
    Shipping:
    CRMM_BUT_LNK0020
    CRMM_BUT_LNK0021
    Billing :
    CRMM_BUT_LNK0030
    CRMM_BUT_LNK0031
    Organization :
    CRMM_BUT_LNK0140
    CRMM_BUT_LNK0141
    I think, for you Organization related table CRMM_BUT_LNK0141 would be useful.
    From this table you will get Sales Org, Division, Distribution Channel.
    And in order to get Sales Office of BP, you will get it from table CRMM_BUT_SET0140 where you can put set_guid fetched from CRMM_BUT_LNK0141
    Hope this helps....Please reward points if useful.
    Regards,
    Shailesh Jadhav

  • I can't insert my data into the table - help please

    Hello everyone,
    I have a trouble about JSP. I'm using Java2 SDK,JSP 1.2,Mysql and TOMCAT.
    I want to do this. A user has to enter the nicno,into the html form(EnterNicInter.jsp),to verify if it is already exist or not. If it is exist in the db, an error msg(Record already exist) must be displayed. If not, then the page "InterviewForm.jsp" displayed. This part is working.
    But, I can't save these details into the db by clicking submit button int the InterviewForm.jsp.
    I wrote a javaBean for this task. Here is it.
    CandidateMgr.java
    package hrm;
    import java.io.*;
    import java.sql.*;
    public class CandidateMgr
         private String nicno;
            private String title;
            private String firstName;
         private String civilStatus;
            private String tele;
            private String eduQua;
         // Constructor
         public CandidateMgr()
              this.nicno = nicno;
              this.title = title;
              this.firstName = firstName;
              this.civilStatus= civilStatus;
              this.tele = tele;
              this.eduQua = eduQua;
              //getters & setters.
               // Initializes the connection and statements
            public void initConnection() {
                    if (connection == null) {
                 try {
                          String sql;
                          // Open the database
                          Class.forName(DRIVER).newInstance();
                          connection = DriverManager.getConnection(URL);
                          //Verify nicno
                          sql="SELECT * FROM Candidate where nicNo= ?";          
                   pstmt1 = connection.prepareStatement(sql);
                   sql ="INSERT INTO Candidate                               
                   VALUES(?,?,?,?,?,?)";
                   pstmt2 = connection.prepareStatement(sql);
             catch (Exception ex) {
                System.err.println(ex.getMessage());
         public boolean verifyNicNo(){
              boolean nic_no_select_ok = false;
              String nic="xxxx";
              initConnection();
                    try {
                       pstmt1.setString(1, nicno);
                   ResultSet rs1 = pstmt1.executeQuery();               
                                if(rs1.next()){
                        nic=rs1.getString("nicNo");
                               if(nic=="xxxx")
                        nic_no_select_ok = true;
                   } else{
                        nic_no_select_ok = false;     
                   rs1.close();
                           pstmt1.close();
                    catch (Exception ex) {
                      System.err.println(ex.getMessage());
              return nic_no_select_ok;
         public boolean addInter(){
              boolean add_inter_ok = false;
              try{
                      //assign values for the object
                   pstmt2.setString(1, nicno);   //      ERROR(java:652)
                   pstmt2.setString(2, title);
                   pstmt2.setString(3, firstName);
                   pstmt2.setString(4, civilStatus);
                   pstmt2.setString(5, tele);     
                   pstmt2.setString(6, eduQua);
                   if(pstmt2.executeUpdate()==1) add_inter_ok=true;
                   pstmt2.close();  
                  catch(SQLException e2){
                           System.err.println(e2.getMessage());
              return add_inter_ok;
    IntreviewForm.jsp (used to submit data into the db)
    <form method="POST" action="InterviewCtrl.jsp">
         //codes
    <input type="text" name="nicno" size="14" style="border:1px solid #0000FF;           
    color: #FF0000; font-weight: bold">
    <input type="text" name="title" size="14" style="border:1px solid #0000FF;           
    color: #FF0000; font-weight: bold">
    <input type="text" name="firstName" size="14" style="border:1px solid #0000FF;           
    color: #FF0000; font-weight: bold">
    <input type="text" name="civilStatus" size="14" style="border:1px solid #0000FF;           
    color: #FF0000; font-weight: bold">
    <input type="text" name="tele" size="14" style="border:1px solid #0000FF;           
    color: #FF0000; font-weight: bold">
    <input type="text" name="eduQua" size="14" style="border:1px solid #0000FF;           
    color: #FF0000; font-weight: bold">
    </form>.......................................................................
    Here is the "InterviewCtrl.jsp"
    <%@ page language="java" import="java.util.*"%>
    <%@ page import="hrm.CandidateMgr" %>
    <%@ page session="false" %>
    <jsp:useBean id="candidate" class="hrm.CandidateMgr" scope="request"/>
    <jsp:setProperty name="candidate" property="*"/>
    <%-- Execute the addInter() method on the bean and check if it is true or false.-- %>
    <%-- if it's true then display a confirmation message "InterConfirm.html" --%>
    <%-- else display InterError.html --%>
    <%
    String nextPage ="MainForm.jsp";
    if(candidate.addInter()){
         nextPage="InterConfirm.html";
         }else{
         nextPage="InterError.html";
    %>
    <jsp:forward page="<%=nextPage%>"/>.......................................................................
    Here is the error:(I mark it in my bean also)
    root cause
    java.lang.NullPointerException
         at hrm.CandidateMgr.addInter(CandidateMgr.java:652)
         at org.apache.jsp.InterviewCtrl_jsp._jspService(InterviewCtrl_jsp.java:66)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:137)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    I use JSP 1.2 , mySQL with TOMCAT. My table name is Candidate.It's fields are as follows:
    Candidate(nicNo,title,fName,civilStatus,tele,eduQua)
    Can anybody tell me whats going on, help me to solve this please.
    Thanks.

    you should try something different, since you are mixing up a lot of code.
    1) create a separate method just to connect and disconnect from a database;
    2) use the value entered and see if you can find a record in the table. If the record is there, then you should re-direct your jsp to a jspError, else goes to another form.
    the code below give you some idea
          if( sAction.equals("Add1") ) {
            sITEM = request.getParameter("parameter1");
            try {
              itemmaster.connect();
              itemmaster.viewitemmaster( sITEM );
              rs = itemmaster.getRs();
              if( rs.next() ) {
                sURL = "additemmaster1.jsp";
              else {
                request.setAttribute( "asITEM", sITEM );
                sURL = "additemmaster2.jsp";
            finally {
              rs.close();
              itemmaster.disconnect();
          }

  • Database don't delete prom the table, help please !!

    there is my code :
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver").newInstance();
    Connection con=DriverManager.getConnection(jdbc:odbc:Medic);
    con.setReadOnly(false);
    try{
    Statement st=con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);
    int res=st.executeUpdate("DELETE FROM PATIENT WHERE PATIEN_ID="+id+";");
    System.out.println(String.valueOf(res)+" rows deleted");
    st.close();
    }catch(Exception exc){
    System.out.print(exc+"\n");
    the code execute with no error or exception , the message that i recieve is "1 rows deleted" and i want delete just one row, it's ok until the moment but whene i read the table i see that the row is not deleted.
    I use dBase database, help please !!!
    Thanks

    Don't trust the return value.
    Because you got no exception it means that the SQL executed. SQL can execute without deleting anything however if the where clause does not match.
    As posted your code is not valid java so anything else is meaningless.

  • Need to find the table of RV45A-ETDAT for Report Development

    Hi Everyone,
    I need to bring a field on a custom report - 'First Date' in the Sales Order at item level.
    It is populated with a structure RV45A and the field is ETDAT.
    Apparrently this field is not directly stored in the sales order related database table like VBAP.
    Kindly advise on how to find 'from where to pick this field value' for a custom report development.
    Thank you very much for your help.
    Hemant

    Hi,
    The field ETDAT field is not stored in any SAP Table.
    Probably the field ETDAT in your structure RV45A is populated with data at runtime and that data might be reassigned to some other field.
    You can check the same only in debugging the standard code of that transaction.
    Reward if helpful.
    Warm Regards
    R Adarsh

  • Do i need to partition the table...?

    hi,
    i have a table which is having the following fields, the average entry expected into this table is nearly 25000 rows per month. and it will be queried daily based on shift_date, shift, and machine.
    do i need to partition this table. if yes how or on which fields i need to to this....?
    BOOKING_REFNO,
    PONUMBER,
    SHIFTDATE,
    OPER_ID,
    MACHINE,
    SHIFT,
    STATUS,
    JOB_HRS,
    JOB_START,
    JOB_END,
    ORD_QTY,
    YIELD_QTY,
    SCRAP_QTY,
    OPER_SEQ,
    CONF_TYPE,
    POSTATUS_REF,
    SHIFT_STATUS,
    COMB_REFNO,
    COMBINED,
    SHIFTAUTOSTAT,
    REASONCODE,
    REASON,
    CONF#
    thanks in Adv
    Kris

    I wouldn't go for partitioning table for 25,000 rows by month. Just a though.
    Anyway, the partitioning question cannot be take in 5 minutes, you should ask yourself why you want it (do you have to archive "old" rows ?), study, benchmark...
    But first of all, the reading of the following article may help you before choosing to go in partition, and choose how use it : Partition Decisions
    In all cases, we cannot answer on which column you have to partition table, we don't know application queries and what are the "key" column(s) (which you should know before decide).
    Nicolas.
    PS : partition is an option of Entreprise Edition with additional fee (an other point to take in account).

  • Need to restart the technical help desk as listed below.  How do we make this happen.  The Technician was about to link into my desk top when we ended about 4 hours ago.

    Thank you for contacting Adobe. @
    A representative will be with you shortly.
    Thank you for your patience.
    While you wait, you can try our community forums where experts are available 24 hours a day, 7 days a week.
    You are now chatting with Naveen Kumar.
    Naveen Kumar: Hello! Welcome to Adobe Customer Service.
    Naveen Kumar: Hi
    you: Naveen, Can you help me by phone? the process has not worked.
    Naveen Kumar: Sure.
    Naveen Kumar: Please elaborate your issue, so that I will assist you better today.
    you: My phone number is 937-429-3474
    Naveen Kumar: I'm sorry to say that it's not possible to make a call to your number. If you have any issue please explain now on chat. Otherwise you have any work. Please contact us back when you have a free time.
    you: i got the serial number ok. But tried to sign in and the system said I needed to reset my pass word which I tried. Now nothing works and it keeps giving me the same suggestion of resetting passwork and that you will send me a message but none is coming.
    Naveen Kumar: May I know the serial number please?
    you: SN: [removed by moderator - never share S/N publicly - anyone can use it]
    Naveen Kumar: Thank you for information.
    Naveen Kumar: May I know when you have purchased this Photoshop Elements ?
    you: I purchased it yesterday at Best Buys our local store.
    Naveen Kumar: Thank you for confirming.
    Naveen Kumar: May I please have your email address registered with Adobe?
    you: [email protected]
    Naveen Kumar: Thank you for email address.
    Naveen Kumar: I see that this is a technical issue. I'll need to transfer this chat to the technical support team so that this issue is resolved in this first contact itself.
    you: So what do I do?
    Naveen Kumar: Please stay online while I transfer this chat to relevant team.
    Please wait while I transfer the chat to the appropriate group.
    You are now chatting with 'Manoj'
    Manoj: Hello. Welcome to Adobe Technical Support.
    Manoj: Hi There.
    Manoj: Please allow me a moment while I check your previous chat.
    You: That will be fine
    Manoj: Thank you for staying online.
    Manoj: I understand that you are unable to activate Photoshop Elements 13 application on your Windows 7 system. Is that right?
    You: Correct I have windows 7
    Manoj: Thank you for confirming the issue.
    Manoj: I will be glad to assist you in resolving this issue.
    Manoj: Just to be clear, could you please let me know where you are facing issues while trying to sign in?
    You: I tried to sign in from the reset password email you sent but it did not work when I reset the pass word
    Manoj: Okay.
    Manoj: May I know if you are able to install the Photoshop Elements 13 application?
    You: Another email has been received with same link to reset the pass word that went to Junk Mail. So what should I do?
    Manoj: I am sorry for the trouble caused.
    Manoj: Open Adobe.com on your system.
    You: I inserted the disk and input the serial number but can not get past the ID & pass word. It says the combination does not work
    Manoj: Okay.
    Manoj: Not to worry. Please open Adobe.com in web browser and try to sign in there.
    You: I have Adobe.com open and input my birth date. Now what do I do?
    Manoj: Thank you.
    Manoj: Now try to continue the installation.
    You: The page just give a bunch of marketing or sales items but no launch the program info.
    Manoj: Okay.
    Manoj: May I know if you are still unable to login with Adobe sign in details while the installation ?
    You: Now my CD Disc drive with the CD in it has refused to word. I have no way to sign in. I tried to get the set up through my control panel but it says install is trying to work and to retry but that will not work
    Manoj: Please check if there is an installation window which is already opened and try to continue with the installation process.
    Manoj: Check the task bar if there is the installation process is going on.
    You: Nothing is going on with installation. The disc drive light is not on. Basically it is locked up and I can not open it
    You: I tried the sign in button again but just got the same window to reset the pass word.
    Manoj: Okay.
    Manoj: Please close the installation window.
    Manoj: Run the set up file now and start the installation process.
    You: I closed all of the windows except this customer care window and my email
    Manoj: Thank you.
    Manoj: Now open the Disc drive.
    Manoj: Run the setup file and start the installation process.
    You: Okay the disc drive opened and is open now
    Manoj: Now please continue with the installation process.
    You: Do I just insert the Disc again?
    Manoj: Yes, please insert the disc.
    Manoj: Open the application folder.
    Manoj: Run the setup file and start the installation process.
    You: It brought up the install window and when i clicked on the install button it saad that installer was running and that I needed to close other adobe windows but only the customer care window is open
    You: It also has the disc drive locked up again
    Manoj: There might be an installer file running background.
    Manoj: Please press Ctrl+Shift+Esc keys together on your keyboard to open Task Manager.
    You: OK
    Manoj: Now go to Processes tab.
    Manoj: Click on Show processes from all users option and then check if there is any Setup.exe process is running.
    You: FireFox.exe *32 is large and running
    Manoj: No, please ignore it.
    Manoj: Check if there is a process named Set up.exe running in the processes tab and end the process if it is listed.
    You: There is no Set up.exe running listed on the page
    Manoj: Okay.
    Manoj: Try to start the installation now and check.
    Manoj: May I know the status please?
    You: I went to the Applications list and there was two Elements 13 there and one was running. I now have just one running but when I tried the installation again it just sent me to the sign in page which will not accept my old or new pass word
    You: I now have two programs running Adobe elements 13 and customer care via FireFox running
    Manoj: Okay.
    Manoj: Thank you for informing.
    You: The disc is not inserted at this time
    Manoj: Please insert the disc.
    Manoj: Copy the folder contents on your disc and then try installing the application.
    You: How do I do that?
    Manoj: Please insert the disc, open the disc folder, copy the entire Photoshop Elements 13 folder to the desktop.
    You: This says it will take 50 minutes to copy them. Is that correct as i have to go some place soon?
    Manoj: The files are huge in size, so it will take a while.
    You: It now says there are 14 minutes remaining
    Manoj: Thank you for informing.
    Manoj: If you want to try installing the application later, you can try installing the application from Desktop by running the setup file from the desktop app.
    You: There is still 8 minutes remaining. When this gets loaded to the desk top then what do I do.
    Manoj: Once the copy of files is completed. Remove the disc and then open the desktop Photoshop Elements 13 folder, run the setup file in that folder to start the installation.
    You: Ok. It still says it will take another 5 minutes to load
    Manoj: Thank you for informing.
    You: Now at 2.30 minutes remaining
    Manoj: Thank you for informing.
    You: Ok. The loading to desk top must be done & I have removed the disc
    Manoj: Thank you,.
    Manoj: Now open the folder which we copied now.
    Manoj: Run the Setup.exe file from the folder.
    You: i tried running the set up file but it says other items are open. I tried to close the one for sign i again and it will not close.
    Manoj: May I know the error it is showing as while trying to close the other installation window?
    You: The sign in window keeps asking for a ID & Password. When i put them in is says I must reset the pass word
    Manoj: Okay.
    Manoj: Close that previous installation window which is asking to reset the password and run the setup file now from the new folder which we copied now.
    You: I said it would send notice to my email but I checked both the email and the junk mail and nothing arrived
    Manoj: Robert, since the previous installation is started from the disc, we need to close that window and start installing from the desktop Photoshop Elements folder.
    You: Ok I got everything closed and will retry
    Manoj: Thank you.
    You: The installer initiation ran and now I am back to the same problem.. When I try to sign in it says I need a new pass word but nothing happens
    Manoj: Okay, Please allow me 2-3 minutes while I check and help you.
    Manoj: Thank you for staying online.
    Manoj: May I have your permission to connect to your computer remotely and try to solve the problem while you watch?
    You: yes but I am running out of time.
    Manoj: Okay.
    Manoj: Could you please let me know how much time is available for you so that we will check if it is okay for the troubleshooting?
    You: I have onlly 10 minutes left before I must leave. I can be back by 2030 (8:30 PM) if that will work
    Manoj: In this case, I will leave this open, please contact us back when you find free time so that we will continue from this point to resolve the issue as early possible.
    Manoj: Is that okay for you?
    You: How do I get back to you at customer care. I am not sure how I got to this point.
    You: Is there a reference number or ticket number I can use for reference
    Manoj: Please use the bellow link to contact us back.
    Manoj: http://helpx.adobe.com/contact/
    Manoj:
    Manoj:
    You: OK
    Manoj: I will make a note of the troubleshooting steps what we performed earlier, when you contact us back. Our agents will go through this interaction and continue from this point only.

    To attempt a new chat session...
    For the link below click the Still Need Help? option in the blue area at the bottom and choose the chat option...
    http://helpx.adobe.com/x-productkb/global/service1.html

  • HT1212 my grandson forgot his password and it says it is disabled and we cannot get it unlocked - says to connect to itunes but that does not do anything except tell me we need to enter the password Help please

    my grandson forgot his password for his ipod 3 and it says disabled connect to itunes > when we connect it to itunes it just says to enter the password and we need suggestions on how to unlock it > right now it will not let us go to any screen to put in a code to try to unlock it
    thanks
    Pam

    Try Recovery Mode.
    Read this: http://support.apple.com/kb/ht1808

  • I need help contacting someone that can help me find who the previous owner was who set up my iphone 5s, there is an activation lock and i need to contact the owners. help??? i think the iphone was stolen and then sold to me

    i think my iphone was stolen before being sold to me, i need help finding out who the original owner was to unlock the phone. any ideas on numbers i could ring? im super gutted

    If you are trying to activate an iPad or iPhone and it is asking for a previous owners Apple ID and password, you have encountered the Activation Lock. This is a security feature that prevents thieves from setting up and using a stolen or lost iPad or iPhone. You have no alternative. You must contact the previous owner to get permission to use the device. If you cannot contact the previous owner return the device to where you bought it and get a refund. You will never be able to activate the device and no one can help you do it.

  • Need to download the updated help...

    I've been trying to update the software on my N97 and Nokia Ovi Suite tells me there is an error (17011) q tells me I have downloaded the latest version of Opera and the Ovisuite I have. As I can do to upgrade?

    Try Nokia Software updater, it sometimes works when Ovi Suite/PC Suite don't !
    If I have helped at all, a click on the White Star is always appreciated :
    you can also help others by marking 'accept as solution' 

  • HT1353 i have aclassic 120 gb 2nd edition and i need to restore the setings. help

    i need to restore my ipod settings so i can resysnc all my music

    Yes, when you restore as new everything will be wipe from your phone.
    You will need to sync with itunes http://support.apple.com/kb/HT1386  to get back your apps/music and contacts IF you sync with a program in itunes.
    I suggest you import your pics to your computer http://support.apple.com/kb/HT4083  then after you restore your phone, you can sync it back to your phone.

  • How do i increase the table space in BI...

    How do i increase the table space in BI. Its giving me short dumps when i am logging into the system. So, i need to increase the Table space. Can you all please tell me the steps for increasing it.
    Thank You.

    hi irfan,
               I too faced the similar problem error showing was table space problem its some database issue sue to this issue i was not able to run any loads or do any operations on by BI side then my on site team contacted the oracle guys to solve this.......
    ravi

  • Need to update row in the table if any one of the value is getting updated

    Hi All,
    I am new to SQL, I need to update the table's row if any one of the value of the row is getting updated, if none of the value is updated then do nothing.
    Advice requested

    It is not clear what you meant... Perhaps a trigger 
    CREATE TRIGGER ShowUpdatedColumns ON Test FOR UPDATE
    AS
    DECLARE @ColumnID int, @Columns nvarchar(4000), @ObjectID int, @LastColumnID int
    SET @ObjectID=(SELECT id FROM sysobjects WHERE name='test')
    SET @LastColumnID=(SELECT MAX(colid) FROM syscolumns WHERE id=@ObjectID)
    SET @ColumnID=1
    WHILE @ColumnID<=@LastColumnID BEGIN
    IF (SUBSTRING(COLUMNS_UPDATED(),(@ColumnID - 1) / 8 + 1, 1)) &
    POWER(2, (@ColumnID - 1) % 8) = POWER(2, (@ColumnID - 1) % 8)
    SET @Columns = ISNULL(@Columns+',','') + COL_NAME(@ObjectID,@ColumnID)
    SET @ColumnID=@ColumnID+1
    END
    PRINT 'Updated columns are :' + @Columns 
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

Maybe you are looking for