Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: mit99mh
  • Content: Threads
  • Order by date
  1. mit99mh

    database design advice

    I've been asked to create a database where a stipluation is that a table entry can have 0,1,2,3 documents associated with it - these documents are unique to each entry - I modelled it but I wondered what designs others have used / would use in this instance. Any advice much appreciated
  2. mit99mh

    SQL Server Should I reindex after Truncate Table?

    I've inherited a DTS package that populates a table with close to 1 million rows. The table has a clustered index and several non-clustered indexes. The DTS package issues a truncate table comand and then data is copied into the table with a SELECT. Should I then re-index or as the data is...
  3. mit99mh

    Setting up a SQL Server to connect connect to Oracle

    I'm migrating DTS packages that copy data from Oracle to a Sql server. I've installed the Oracle 10 G client on the server and I'm using the Microsoft Ole DB for Oracle provider to connect to an oralce database - the package runs but only selects part of the data and excludes data of type...
  4. mit99mh

    DTS Package not selecting all the data in the query

    I'm migrating DTS packages that copy data from Oracle to Sql server using the Microsoft Ole DB for Oracle provider - the package then only selects part of the data with data of type varchar2 missing - on the other server the package runs completely - has anyone else experienced this before? Any...
  5. mit99mh

    Using DTS to connect to an Oracle Database

    I want to extract data from an Oracle database using DTS / Microsoft OLE DB Provider For Oracle - what oracle related software do I need to install on the server hosting the instance of SQL Server?
  6. mit99mh

    web based sql server monitoring system

    forgive my lack of knowledge but is there a web-based system available for monitoring SQL Server instances and the server they are installed on? If yes could you point me in the right direction
  7. mit99mh

    Configuring IIS to host multiple dev sites

    I'm a IIS novie - I'm trying to configure a web server to hosts multiple dev sites I really want to set things up so eg http://devserver/devsite1 http://devserver/devsite2 I must be doing something fundamentally wrong as the only way I can get individual sites working is to access them using...
  8. mit99mh

    Mirroring live data base on dev server

    I've been given the task of sorting out a dev server - the live version of the database and the dev version are very different how would anyone recommend updating the dev version so everything (roles table designs etc) is identical to the live server - I was going to fully back the live server...
  9. mit99mh

    Mirroring live data base on dev server

    I've been given the task of sorting out a dev server - the live version of the database and the dev version are very different how would anyone recommend updating the dev version so everything (roles table designs etc) is identical to the ive server - I was going to fully back the live server up...
  10. mit99mh

    70-315 Exam Advice

    I've just taken my 70-315 exam and passed (962/1000) - for the benefit of anyone taking the exam I used the following strategy which worked for me. Buy the MCAD 70-315 Textbook by Kalani - it's a monster (~1300 pages) but well worth it. I worked through 90% of the examples in the book and read...
  11. mit99mh

    Adding radiobuttonlist to datagrid and setting state

    I recently had a request for editing data in a datagrid - the customer required the <EditTemplate> of the datagrid to contain a RadioButtonList set with data from a database. I'd used texbox's a number of times in then <EditTemplate> of datagrids but never a radiobuttonlist - the following...
  12. mit99mh

    object design advice

    I'm pretty new to OO and was wondering is it best to handle exceptions within an object and provide feedback to the user or let the exception be handled in code or throw a new exception containing a custom message: eg In the example below I handle the exception in the object and set a bool to...
  13. mit99mh

    how can users authenticated using forms authentication upload files

    I have a required for users who have been authenticated using forms authentication to be able to upload files from their desktop - I can set a folder to use the aspnet account but I want the user to be able to upload any files from their desktop or other drives. Any help much appreciated.
  14. mit99mh

    i need help validating an xml file against a schema using ASP.NET

    Does anyone know a good code example to help me do this including writing the schema. Any help much appreciated.
  15. mit99mh

    .NET CONTENT MANAGEMENT SYSTEM

    Does anyone know of a free / cheap CMS developed in .NET preferably C# that is easy to brand and deploy. Any help much appreciated.
  16. mit99mh

    problems using page.databind when outputting values from an object

    I'm using a page with several panels - I instantiate an object and using Page.DataBind(); in the subroutine in the codebehind and <%# Object.Value %> in the apsx page - so far so good. I then change the value in the object and use the same approach as above Page.DataBind(); in the subroutine in...
  17. mit99mh

    selecting a row from a datagrid

    Is it possible to select a row from a datagrid after clicking a PushButton in a buttoncolumn? Any help much appreciated.
  18. mit99mh

    ListBox not displaying contents returned from method

    The method below returns a ListBox, it works as I can iterate through the items and the correct items are returned. However the web control is not populated. Any help much appreciated. //declaration protected System.Web.UI.WebControls.ListBox forwardOptions; //assign listbox to return from...
  19. mit99mh

    any idea why the listbox is not being populated?

    The method returns a ListBox as I can iterate through the items and the correct items are returned. However the web control is not populated. Any help much appreciated. //assign listbox to return from method ListItem forwardOption = SetForwardOptions(currentRoleId); foreach(ListItem li in...
  20. mit99mh

    re-using web forms

    Can anyone point me to a resource that explains how to re-sue web forms - the reason I'm asking is that in the web app I'm working on several forms are duplicated and I assume their exists a mechanism for re-using / building forms on the fly in .NET and would like to be pointed to any resources...

Part and Inventory Search

Back
Top