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 bkrike 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: Maim
  • Content: Threads
  • Order by date
  1. Maim

    Replication issues (sql server 2005)

    Hi, We have a pretty large database with Transaction Replication to a secondary server (pull subscription). Some tables are starting to get pretty large so I want to partition them. On some tables, I have to recreate the primary keys with a new column used for the partition schema. The...
  2. Maim

    Extremely slow delete

    Hi, I have a table (ParentVal) with four child tables (ParentValA, ParentValB, ParentValC, ParentValD) each with foreign key constraints. ParentVal has 15000 records ParentValA has 1000000 records ParentValB has 2000000 records ParentValC has 15000000 records ParentValD has 30000000 records...
  3. Maim

    Adding files/filegroups to server - what's the best way?

    I'm wondering if I'm going about this correctly... I have a data file on the PRIMARY filegroup located on drive H: (100gb 1/0 etc...) The data file is getting close to 100gb so I had IT add another drive to the server. What I want to do is stop the growth on the H: drive and start writing to...
  4. Maim

    xml modify, any way to check attribute exists before inserting?

    I have a record with an xml data type field. The value starts out raw, basically just a "<mynode />". I also have some procedures that handle related records (in the thousands) and it checks whether to perform taskA or taskB and add an attribute to the xml. Does the xml dml have some way of...
  5. Maim

    Stopping the debugger crashes the IDE

    Hi, I'm running this fairly large web project (aspx/c#) on VS2003. The issue I'm having is when I debug and attempt to stop debugging, two things can happen... 1. The IDE disappears as if I clicked on the X instead of just the "stop debugging" button. 2. When the IDE doesn't disappear (after...
  6. Maim

    importing vb ActiveX,, CreateInstance returns &quot;Class not registered&quot;

    I'm maintaining some legacy code that doesn't seem to work correctly... An ActiveX dll was created a while ago in VB6 to process some data in the database. This dll is imported into a VC++ (visual studio .net 2003) project with the #import directive, but when it attempts to create an instance...
  7. Maim

    Is there a Microsoft Script Debugger app for ws 2003?

    I am wondering if there's something similar to what's on 2000 that'll give me some minimal server side debugging capabilities. I don't want to install vs.net on the machines running simulated production environments but it would greatly help if I could somehow see what's going on in the...
  8. Maim

    Can't delete folder with &quot;reserved word&quot; for a name (Nul)

    Hi, I've just been given administrative control of a machine with Windows 2000 server that people use to run various software to test with. While doing a clean-up of one of the HDDs, I tried to delete one folder and got a message: "Cannot delete Nul: the parameter is incorrect." I opened a cmd...
  9. Maim

    Newbie: how to script a test if index exists before dropping?

    What would be the oracle equivalent of the following? if exists (select * from dbo.sysindexes where name='myindex_idx' and id=Object_id('dbo.mytable')) drop index dbo.mytable.myindex_idx go I've tried if exists(select * from user_objects where object_type = 'INDEX' and object_name =...
  10. Maim

    How to remove empty lines from a string?

    I have a string object as follows "abc def ghi jkl mno" I would like to transform it into "abc def ghi jkl mno" I'm not familiar with regular expression pattern matching so I'm asking here. I tried something like text = text.split(/^\r\n/).join(''); but that doesn't do anything. Any help...
  11. Maim

    XP takes 10-15 minutes to boot

    I just finished reinstalling XP pro on an Athlon XP 1700+, Shuttle AK31 MB, 40 Gb Seagate barracuda (3 partitions), GeForce 2 MX, Fortissimo sound, 538TX NIC, USR modem, 256MB ram... It kept blue screening and finally with a "can't find registry" error so I formatted and reinstalled. After the...
  12. Maim

    Opening a &lt;select&gt;&lt;/select&gt; by clicking another element?

    Hi, I was wondering if it's possible to open up a select element (combobox?) by clicking on another object, as if I were actually clicking on the select? <select id=&quot;justATest&quot;> <option>this <option>is <option>just <option>a <option>test </select> .... <button...
  13. Maim

    IP address question

    I'm running a few machines hooked up to a linux firewall/nat server. On occasion, I like hosting a game, and I have setup several port forewarding rules to do so. However, in order to get the external ip (24.xxx.xxx.xxx) from a windows machine, I need to open a browser, login to the web admin...
  14. Maim

    how to set the table inside div scrolled to bottom

    I have a div with its overflow set to auto. Inside, I have a table with several rows (10) but I only ever want to show 4 rows at a time so the height of my div is 100px. Is there a way to always have the last row showing at the bottom? If yes, then how? sample code <div...
  15. Maim

    Networking stops working if idle for a few hours.

    Hi. My home setup is as follows... I have a Linux Firewall/nat (smoothwall 1.0 + any updates) setup as the server, 192.168.1.100-150 for DHCP. This is hooked up to a Netgear switch. One machine runs Windows XP-Pro with static IP. The other machine runs Win98SE with static IP. My laptop has...
  16. Maim

    Get the position of an element relative to the body or another element

    I have a page with several elements, ranging from tables to inputs of type text, checkbox, button etc... I have a div created at the start with the following properties, style=&quot;position:absolute;top:0px;left:0px;zIndex:100;visibility:hidden&quot; What I was trying to do is change the...
  17. Maim

    button movement

    I'm using a <button class=&quot;...&quot;><img src=&quot;...&quot;></button> the class removes the the border and background of the button, sets the size for it and places the cursor as a hand. I'm doing it this way because it is accessible when using the tab key and activates when the...
  18. Maim

    How to set the mouse cursor to wait while processing?

    I have my document with lots of controls and I'd like to have the cursor use the 'wait' style but I've not found any way to have it like this for everything in the page. I can always set anything to use the following while processing something object.style.cursor = 'wait'; then when finished...
  19. Maim

    Adding row to midle of table dynamically. Is it possible?

    Hi, I'm looking for information on whether it's possible to add a row in the middle of a table. Ex. my Table contains 2 <tr>s, add a <tr> between the original two. The cide below just appends to the table but I haven't found how to insert after the indicated row... [code] <!DOCTYPE HTML PUBLIC...
  20. Maim

    Trying to use z-indexes for some elements, not getting what I want...

    What am I missing here? btw, this seems to only work in IE, which is fine for the moment... <html> <head> <title>Language selector</title> <style type=&quot;text/css&quot;> div.lang{ position: absolute; visibility:'hidden'; font-size: 10px; float: left; border: 1px solid #000000...

Part and Inventory Search

Back
Top