User Frans - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T19:00:15Zhttp://stackoverflow.com/feeds/user/17746http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/105778/what-is-the-ultimate-program-to-make-a-drawing-of-a-database-model10What is the ultimate program to make a drawing of a database model?Frans2008-09-19T21:27:04Z2009-10-22T14:21:52Z
<p>One of the first things I do when I'm on a new project is design a database model. To visualize the model I use a 7 year old version of Smartdraw. Maybe it's time for something new. What is the ultimate program to make a drawing of a database model. Smartdraw is for Windows only. Is there something that can be used on unix as well?</p>
http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/253972#2539722Answer by Frans for What non-programming books should programmers read?Frans2008-10-31T15:46:53Z2009-08-20T09:23:06Z<p>The <a href="http://en.wikisource.org/wiki/Bible" rel="nofollow">Bible</a>.</p>
http://stackoverflow.com/questions/134263/how-can-i-configure-tomcat-to-always-direct-to-index-jsp-after-login/136266#136266-1Answer by Frans for How can I configure Tomcat to always direct to index.jsp after login?Frans2008-09-25T21:28:26Z2008-09-26T07:22:42Z<p>It's something you can't configure in web.xml as it is not part of the standard. For Tomcat (tested on version 6.0.14) you can force users back to index.jsp by adding the next code on top of your login.jsp. It redirects every request that does not have a parameter with the name 'login' in the url to the /index.jsp?login page. Because the redirect does have the 'login' parameter the user will be presented the login page.</p>
<p>It's not a secure solution. If someone requests for a page and adds the login parameter, he will be redirected. So:</p>
<p>/showPerson?id=1234 will redirect to /index.jsp?login</p>
<p>/showPerson?id=1234?login will NOT redirect to /index.jsp?login</p>
<p>The code that goes on top of your login.jsp:</p>
<pre><code><%
if (request.getParameter("login") == null) {
response.sendRedirect(request.getContextPath() + "/index.jsp?login");
return;
}
%>
</code></pre>
<p>Instead of using the 'login' parameter you probably could use a cookie. You can make it more secure by creating a random value for the login parameter (login=randomvalue) and store the value in the session object for comparison.</p>
http://stackoverflow.com/questions/132921/force-https-in-websphere-6-1/133006#1330060Answer by Frans for Force Https in Websphere 6.1Frans2008-09-25T12:29:40Z2008-09-25T12:29:40Z<p>Websphere is not a complete http server. It does have 'Transport Chains', which act like an HTTP Server.</p>
<p>Normally you will put a HTTP server in front. IBM provides IHS (IBM HTTP Server) which is a lightly modified Apache HTTP Server. The HTTP Server is configured with the httpd.conf file. There you add redirects in such a way that request for http are redirected to https.</p>
<p>Maybe you can give some detailed information about your infrastructure.</p>
http://stackoverflow.com/questions/132390/passing-timestamp-parameters-in-sqlanalyzer-to-debug-stored-procedures/132671#1326711Answer by Frans for Passing timestamp parameters in SQLAnalyzer to debug stored proceduresFrans2008-09-25T11:14:52Z2008-09-25T12:09:47Z<p>The debug input screen expects you to enter a hexadecimal value. You don't have to enter the 0x in front of this value. </p>
<p>Just enter 00000001410039E2 and it will work.</p>
http://stackoverflow.com/questions/131759/whats-the-best-implemention-of-client-creatable-and-modifiable-web-forms-in-a-re/131995#1319951Answer by Frans for what's the best implemention of client creatable and modifiable web forms in a relational database?Frans2008-09-25T07:45:53Z2008-09-25T07:58:40Z<p>There is a third option, where you create tables and add columns if needed. It depends on how many forms are created, but databases can handle easily a lot of tables. So if a user wants to add a form 'Car Registration Form', you add a table 'CarRegistrationForm'. For every field they want on the form, you can let them choose between some basic types as date, int and text. And when text is chosen, they have to enter a maximum length from a pick list, which gives you info if the field should be a varchar or a clob.</p>
<p>This works on SQL Server, where you can easily add and drop columns. For DB2 it can be a problem, because the drop column is not implemented. For mysql i'm not sure.</p>
<p>You still need to register your forms and the fields on it in two separate tables.</p>
http://stackoverflow.com/questions/131729/best-it-programming-technology-related-acronym/131823#13182328Answer by Frans for Best IT/Programming/Technology related AcronymFrans2008-09-25T07:04:56Z2008-09-25T07:04:56Z<p>RTFM (Read the ....)</p>
<p>I wish their was a button in stackoverflow which has RTFM on it. Lots of questions could then be answered with one push on a button.</p>
http://stackoverflow.com/questions/130065/os-development/130127#1301271Answer by Frans for OS DevelopmentFrans2008-09-24T21:36:48Z2008-09-24T21:42:48Z<p>I've done that once for a 386SX, which was on a PCI board. A good source on how to start a X86 cpu in protected mode is the source code of linux. It's just a few assembly statements. After that you can use gcc to compile your C code. The result is objectcode in ELF format. I wrote my own linker, to make a program out of the objectcode. And yes, it worked! Good luck.</p>
http://stackoverflow.com/questions/127912/how-to-use-win32api-from-ironpython/129325#1293250Answer by Frans for How to use win32api from IronPythonFrans2008-09-24T19:28:30Z2008-09-24T19:35:34Z<p>It's like asking if you can swim without going in to the water. If you need information from windows, the only option is to use the win32api. There are lots of examples to find on how to do so.</p>
<p>If you don't like this answer, just leave a comment in your question and I will remove this answer, so your question will remain in the unanswered questions list.</p>
http://stackoverflow.com/questions/129029/which-is-faster-switch-or-if-else/129068#1290680Answer by Frans for Which is faster? switch or if-else ?Frans2008-09-24T18:50:57Z2008-09-24T18:50:57Z<p>An optimized switch statement jumps to the right code after a lookup in a table, which is O(1). The if-else statements does a compare and you'll have to make a if-else tree if there are lots of options, which is of O(Log n).</p>
<p>If you have lots of options to choose from: take the switch.</p>
http://stackoverflow.com/questions/123945/what-causes-invalid-advise-flags-run-time-error-in-excel-vba/124141#1241411Answer by Frans for What causes "Invalid advise flags" run-time error in Excel VBA?Frans2008-09-23T21:51:52Z2008-09-23T21:51:52Z<p>It's part of Microsoft's OLE component. See <a href="http://msdn.microsoft.com/en-us/library/microsoft.visualstudio.ole.interop._olecadvf.aspx" rel="nofollow">msdn</a></p>
<p>This doesn't solve your problem, but maybe you can find more info there.</p>
http://stackoverflow.com/questions/123557/in-ms-sql-how-do-i-insert-into-a-temp-table-and-have-an-identity-field-created/123881#1238810Answer by Frans for In MS-SQL, how do I INSERT INTO a temp table, and have an IDENTITY field created, without first declaring the temp table?Frans2008-09-23T21:04:32Z2008-09-23T21:09:55Z<p>You commented: not working if oldtable has an identity column.</p>
<p>I think that's your answer. The #newtable gets an identity column from the oldtable automatically. Run the next statements:</p>
<pre><code>create table oldtable (id int not null identity(1,1), v varchar(10) )
select * into #newtable from oldtable
use tempdb
GO
sp_help #newtable
</code></pre>
<p>It shows you that #newtable does have the identity column.</p>
<p>If you don't want the identity column, try this at creation of #newtable:</p>
<pre><code>select id + 1 - 1 as nid, v, IDENTITY( int ) as id into #newtable
from oldtable
</code></pre>
http://stackoverflow.com/questions/121387/sql-fetch-the-row-which-has-the-max-value-for-a-column/121438#1214380Answer by Frans for SQL - fetch the row which has the Max value for a columnFrans2008-09-23T14:39:31Z2008-09-23T20:31:28Z<p>(T-SQL) First get all the users and their maxdate. Join with the table to find the corresponding values for the users on the maxdates.</p>
<pre><code>create table users (userid int , value int , date datetime)
insert into users values (1, 1, '20010101')
insert into users values (1, 2, '20020101')
insert into users values (2, 1, '20010101')
insert into users values (2, 3, '20030101')
select T1.userid, T1.value, T1.date
from users T1,
(select max(date) as maxdate, userid from users group by userid) T2
where T1.userid= T2.userid and T1.date = T2.maxdate
</code></pre>
<p>results:</p>
<pre><code>userid value date
----------- ----------- --------------------------
2 3 2003-01-01 00:00:00.000
1 2 2002-01-01 00:00:00.000
</code></pre>
http://stackoverflow.com/questions/122865/z-index-issue/123084#1230841Answer by Frans for Z-index issue?Frans2008-09-23T19:05:07Z2008-09-23T19:05:07Z<p>I face the same problem. The problem in my case is that the content in the iframe is not controlled by IE directly, but by Acrobat as it is a pdf file. You can try to show the iframe without the content, in which case the popup displays normally. For some reason IE is not able to control the z-index for external helpers.</p>
<p>It was tested with IE7</p>
http://stackoverflow.com/questions/120917/create-a-database-using-t-sql-on-a-specified-location/120946#1209461Answer by Frans for Create a database using T SQL on a specified locationFrans2008-09-23T13:23:05Z2008-09-23T13:23:05Z<p>From the SQL Server Books an example where database filenames are explicitely defined:</p>
<pre><code>USE master
GO
CREATE DATABASE Sales
ON
( NAME = Sales_dat,
FILENAME = 'c:\program files\microsoft sql server\mssql\data\saledat.mdf',
SIZE = 10,
MAXSIZE = 50,
FILEGROWTH = 5 )
LOG ON
( NAME = 'Sales_log',
FILENAME = 'c:\program files\microsoft sql server\mssql\data\salelog.ldf',
SIZE = 5MB,
MAXSIZE = 25MB,
FILEGROWTH = 5MB )
GO
</code></pre>
http://stackoverflow.com/questions/120301/is-there-a-wiki-that-also-contains-architectural-diagrams/120338#1203382Answer by Frans for Is there a wiki that also contains architectural diagrams?Frans2008-09-23T11:02:49Z2008-09-23T11:02:49Z<p>We use Confluence from Atlassian (see www.atlassian.com). In there is a component called Gliffy for making diagrams. It works great. It's not free software.</p>
http://stackoverflow.com/questions/117301/how-does-including-a-sql-index-hint-affect-query-performance/117427#1174270Answer by Frans for How does including a SQL index hint affect query performance?Frans2008-09-22T20:30:38Z2008-09-22T20:47:04Z<p>My experience is that sometimes you know more about your dataset then SQL Server does. In that case you should use query hints. In other words: You help the optimizer decide.</p>
<p>I once build a datawarehouse where SQL Server did not use the optimal index on a complex query. By giving an index hint in my query I managed to make a query go about 100 times faster.</p>
<p>Use them only after you analysed the query plan. If you think your query can run faster when using another index or by using them in a different order, give the server a hint.</p>
http://stackoverflow.com/questions/103829/t-sql-how-do-i-get-the-rows-from-one-table-whose-values-completely-match-up-wit/104204#1042042Answer by Frans for T-SQL: How do I get the rows from one table whose values completely match up with values in another table?Frans2008-09-19T18:14:53Z2008-09-22T20:04:12Z<p>The following query gives you the requested results:</p>
<pre><code>select A.pkid, B.otherId
from @a A, @b B
where A.value = B.value
group by A.pkid, B.otherId
having count(B.value) = (
select count(*) from @b BB where B.otherId = BB.otherId)
</code></pre>
http://stackoverflow.com/questions/114321/best-way-to-deal-with-session-timeout-in-web-apps/114376#1143760Answer by Frans for Best way to deal with session timeout in web apps?Frans2008-09-22T11:43:12Z2008-09-22T11:49:43Z<p>As an alternative for the technical solutions, you could make your application in such a way that everytime a particular job is done, for example filling in a form, you ask the user if he wants to continue doing another job or if he's done. Yould could have a startscreen with menu options and if the user chooses an option he first has to enter his credentials. </p>
<p>Or put a password field on the form. Depends on how many forms they have to fill in a session.</p>
http://stackoverflow.com/questions/113803/mysql-foreign-keys-how-to-enforce-one-to-one-across-tables/113858#1138582Answer by Frans for MySQL foreign keys - how to enforce one-to-one across tables?Frans2008-09-22T08:49:07Z2008-09-22T08:49:07Z<p>To make sure that a product is or a cd or a dvd I would add a type column and make it part of the primary key. In the derived column you add a check constraint for the type. In the example I set cd to 1 and you could make dvd = 2 and so on for each derived table.</p>
<pre><code>CREATE TABLE IF NOT EXISTS `product` (
`product_id` int(10) unsigned NOT NULL auto_increment,
'product_type' int not null,
`product_name` varchar(50) NOT NULL,
`description` text NOT NULL,
PRIMARY KEY (`product_id`, 'product_type')
) ENGINE = InnoDB;
CREATE TABLE `product_cd` (
`product_id` INT UNSIGNED NOT NULL ,
'product_type' int not null default(1) check ('product_type' = 1)
`artist_name` VARCHAR( 50 ) NOT NULL ,
PRIMARY KEY ( `product_id`, 'product_type' ) ,
) ENGINE = InnoDB;
ALTER TABLE `product_cd` ADD FOREIGN KEY ( `product_id`, 'product_type' )
REFERENCES `product` (`product_id`, 'product_type')
ON DELETE RESTRICT ON UPDATE RESTRICT ;
</code></pre>
http://stackoverflow.com/questions/113387/whats-the-relationship-between-margin-padding-and-width-in-different-browsers/113585#1135850Answer by Frans for What's the relationship between margin, padding and width in different browsers?Frans2008-09-22T07:17:22Z2008-09-22T07:17:22Z<p>It not only depends from the browser and version you choose, but also from the doctype of your html document. Internet explorer in "quirks mode" is for example completely different from Internet explorer with doctype XHTML 1.0 Transitional.</p>
http://stackoverflow.com/questions/112028/what-was-the-biggest-lesson-you-learned-in-your-career-as-an-it-professional/112097#1120971Answer by Frans for What was the biggest lesson you learned in your career as an IT professional?Frans2008-09-21T20:50:29Z2008-09-21T20:50:29Z<p>Keep focus on what you intended to do. Once I created a form in a web-app where people had to enter their address. I started looking for a list of all possible cities in my country. After a while I found that such a list did not exists. Why not? I tried to find the answer to that question. It gave me insight in how names of places and cities are registered by the government......</p>
<p>..... And then I decided to just have a field on the form where people could enter the city of their address. I lost half a day searching for a list of cities I didn't need at all.</p>
<p>(I saw programmers spend weeks of time on functionality a customer never asked for.)</p>
http://stackoverflow.com/questions/112010/how-to-enable-inno-db-support-on-mysql-5-installed-above-mysql-4/112042#1120421Answer by Frans for How to enable inno-db support on MySql 5 installed above MySql 4?Frans2008-09-21T20:36:55Z2008-09-21T20:36:55Z<p>I do have the following innodb options in my.ini. It is a very minimal configuration, so dont' use this values if you would like mysql to have a good performance. Please restart mysql after a change of my.ini.</p>
<pre><code>#*** INNODB Specific options ***
innodb_data_home_dir="C:/mysqldata/"
#skip-innodb
innodb_additional_mem_pool_size=120M
innodb_flush_log_at_trx_commit=1
innodb_log_buffer_size=16M
innodb_buffer_pool_size=10M
innodb_log_file_size=2M
innodb_thread_concurrency=8
</code></pre>
http://stackoverflow.com/questions/105564/is-it-possible-to-build-following-sql-query/105589#1055892Answer by Frans for Is it possible to build following SQL queryFrans2008-09-19T21:00:20Z2008-09-19T21:00:20Z<pre><code>select * from books
where title like "%text%" or description like "%text%"
order by date, case when title like "%text%" then 0 else 1 end
</code></pre>
http://stackoverflow.com/questions/105190/should-i-learn-assembly-programming/105347#1053472Answer by Frans for Should I learn Assembly programming?Frans2008-09-19T20:32:16Z2008-09-19T20:32:16Z<p>Every programmer should know how a CPU works. Assembly programming is the basic art. Once you have done assembly programming you can do any other programming language. So yes: learn it. It makes you a better software engineer. It will give you an fundamental insight in what can and what cannot be done with a computer.</p>
http://stackoverflow.com/questions/104747/how-to-determine-order-for-new-item/104835#1048350Answer by Frans for How to determine order for new item?Frans2008-09-19T19:32:46Z2008-09-19T19:32:46Z<p>InnoDB supports transactions. Before the insert do a 'begin' statement and when your finished do a commit. See <a href="http://www.databasejournal.com/features/mysql/article.php/3382171" rel="nofollow">this article</a> for an explanation of transactions in mySql.</p>
http://stackoverflow.com/questions/104525/warm-backup/104762#1047620Answer by Frans for Warm BackupFrans2008-09-19T19:23:07Z2008-09-19T19:23:07Z<p>The only solution I know is to create a complete backup of your active database and restore this backup to a copy of the database in a 'warm backup' state. First create a backup from the active db:</p>
<pre><code>backup database activedb to disk='somefile'
</code></pre>
<p>Then restore the backup on another sql server. If needed you can use the WITH REPLACE option to change the default storage directory</p>
<pre><code>restore database warmbackup from disk='somefile'
with norecovery, replace ....
</code></pre>
<p>Now you can create backups of the logs and restore them to the warmbackup with the restore log statement.</p>
http://stackoverflow.com/questions/104380/tips-on-refactoring-an-outdated-database-schema/104445#1044450Answer by Frans for Tips on refactoring an outdated database schemaFrans2008-09-19T18:44:51Z2008-09-19T18:44:51Z<p>I don't think its obvious that the id of the transactions table should be a foreign key to either ReceiptInfo or a ShipmentInfo. Think the other way around. In an object oriented model you should have a transaction table and the ReceiptInfo or a ShipmentInfo should have a foreign key to the transaction table. If you are lucky, there will be only 1 or 2 points in code where new records in ReceiptInfo or a ShipmentInfo are made. There you should add code where you add an entry in the Transaction table and after that create the entry in ReceiptInfo or ShipmentInfo with the foreign key to Transaction.</p>
http://stackoverflow.com/questions/100332/best-way-to-store-event-times-in-mysql-database/100453#100453-1Answer by Frans for Best way to store event times in (My)SQL databaseFrans2008-09-19T08:17:45Z2008-09-19T08:57:14Z<p>You need two tables. One for storing the repeating events (table repeatevent) and one for storing the events (table event). Simple entries are only stored in the event table. Repeating entries are stored in the repeatevent table and all single entries for the repeating event are also stored in the event table. This means that everytime you enter a repeating entry, you have to enter all the single resulting entries. You can do this by using triggers, or as part of your business logic.</p>
<p>The advantage of this approach is, that querying events is simple. They are all in the event table. Without the storage of repeating events in the event table, you would have complex SQL or business logic that would make your system slow.</p>
<pre><code>create table repeatevent (
id int not null auto_increment,
type int, // 0: daily, 1:weekly, 2: monthly, ....
starttime datetime not null, // starttime of the first event of the repetition
endtime datetime, // endtime of the first event of the repetition
allday int, // 0: no, 1: yes
until datetime, // endtime of the last event of the repetition
description varchar(30)
)
create table event (
id int not null auto_increment,
repeatevent null references repeatevent, // filled if created as part of a repeating event
starttime datetime not null,
endtime datetime,
allday int,
description varchar(30)
)
</code></pre>
http://stackoverflow.com/questions/100416/force-default-value-when-adding-column-to-table-mssql/100563#1005632Answer by Frans for Force default value when adding column to table - MSSQLFrans2008-09-19T08:50:29Z2008-09-19T08:50:29Z<p>You need two statements. First create the column with not null. Then change the not null constraint to nullable</p>
<pre><code>alter table mytable add mycolumn varchar(10) not null default ('a value')
alter table mytable alter column mycolumn varchar(10) null
</code></pre>
http://stackoverflow.com/questions/105778/what-is-the-ultimate-program-to-make-a-drawing-of-a-database-model/105818#105818Comment by Frans on What is the ultimate program to make a drawing of a database model?Frans2009-11-27T15:21:06Z2009-11-27T15:21:06ZI thought the question was clear: What is the ultimate program to make a drawing ... I need a tool to document my database model.http://stackoverflow.com/questions/78194/what-tools-are-there-for-timed-batch-processes-in-j2ee/96446#96446Comment by Frans on What tools are there for timed batch processes in J2EE?Frans2008-09-24T22:49:59Z2008-09-24T22:49:59ZIt runs on my own server and I am the only one who sees the logfiles. It's just to make sure that other will not start my batch. The point I wanted to make here is that you can use crontab to call a servlet. Secure it the way you think is necessary. Works perfectly for me.http://stackoverflow.com/questions/123976/url-encryption-in-javaComment by Frans on URL Encryption in JavaFrans2008-09-23T21:35:52Z2008-09-23T21:35:52ZCan you be more specific please?http://stackoverflow.com/questions/96247/what-is-the-best-place-to-store-a-configuration-file-in-a-java-web-application-w/96436#96436Comment by Frans on What is the best place to store a configuration file in a java web application (war) ?Frans2008-09-23T19:31:37Z2008-09-23T19:31:37ZThanks for your suggestions. They are very usefull to me.http://stackoverflow.com/questions/122865/z-index-issue/123062#123062Comment by Frans on Z-index issue?Frans2008-09-23T19:22:29Z2008-09-23T19:22:29ZIn my case the popup is in the parent window. So I don't think it will help.http://stackoverflow.com/questions/122865/z-index-issue/123062#123062Comment by Frans on Z-index issue?Frans2008-09-23T19:20:34Z2008-09-23T19:20:34ZThe only solution/advise I found was to design the page in such a way that the divs are not overlapping. Hmmmm....http://stackoverflow.com/questions/104747/how-to-determine-order-for-new-item/104835#104835Comment by Frans on How to determine order for new item?Frans2008-09-23T07:01:48Z2008-09-23T07:01:48ZYou are completely right. My answer does not solve your problem. Thanks for the comment.