<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
 xmlns:dc="http://purl.org/dc/elements/1.1/"
 xmlns:content="http://purl.org/rss/1.0/modules/content/"
 xmlns:atom="http://www.w3.org/2005/Atom"
>
	<channel>
		<copyright>Copyright 1998 - 2026 DPG Media B.V.</copyright>
		<pubDate>Fri, 22 May 2026 16:38:52 GMT</pubDate>
		<lastBuildDate>Fri, 22 May 2026 16:38:52 GMT</lastBuildDate>
		<description>GoT - list_messages</description>
		<image>
			<link>https://gathering.tweakers.net/</link>
			<title>Gathering of Tweakers</title>
			<url>https://tweakers.net/g/if/logo.gif</url>
		</image>
		<language>nl-nl</language>
		<link>https://gathering.tweakers.net/rss/list_messages/1086013</link>
		<atom:link href="https://gathering.tweakers.net/rss/list_messages/1086013" rel="self" type="application/rss+xml" />
		<title>[SQL server 2000] integer datatype problemen - Softwareontwikkeling - GoT</title>
		<webMaster>gathering@tweakers.net (Administrator)</webMaster>
		<item>
			<title>whoami</title>
			<link>https://gathering.tweakers.net/forum/list_message/24582340#24582340</link>
			<description>Tja, dit is gewoon een gevalletje begrijpend lezen.</description>
			<content:encoded><![CDATA[Tja, dit is gewoon een gevalletje begrijpend lezen.]]></content:encoded>
			<dc:creator>whoami</dc:creator>
			<guid isPermaLink="false">https://gathering.tweakers.net/forum/list_message/24582340#24582340</guid>
			<pubDate>Fri, 11 Nov 2005 09:23:28 GMT</pubDate>
		</item>
		<item>
			<title>Venxir</title>
			<link>https://gathering.tweakers.net/forum/list_message/24579115#24579115</link>
			<description>En dat was de oplossing, bedankt StarLite </description>
			<content:encoded><![CDATA[En dat was de oplossing, bedankt StarLite <img src="https://tweakers.net/g/s/wink.svg" width="16" height="16" alt=";)">]]></content:encoded>
			<dc:creator>Venxir</dc:creator>
			<guid isPermaLink="false">https://gathering.tweakers.net/forum/list_message/24579115#24579115</guid>
			<pubDate>Thu, 10 Nov 2005 18:31:17 GMT</pubDate>
		</item>
		<item>
			<title>Rath</title>
			<link>https://gathering.tweakers.net/forum/list_message/24579094#24579094</link>
			<description>Column or parameter #1: Cannot specify a column width on data type int.

==&gt; spreekt toch voor zich, niet??</description>
			<content:encoded><![CDATA[Column or parameter #1: Cannot specify a column width on data type int.<br>
<br>
==&gt; spreekt toch voor zich, niet??]]></content:encoded>
			<dc:creator>Rath</dc:creator>
			<guid isPermaLink="false">https://gathering.tweakers.net/forum/list_message/24579094#24579094</guid>
			<pubDate>Thu, 10 Nov 2005 18:28:06 GMT</pubDate>
		</item>
		<item>
			<title>StarLite</title>
			<link>https://gathering.tweakers.net/forum/list_message/24579090#24579090</link>
			<description>Zoals er staat, je mag een int geen size megeven, je hebt int of bigint voor verschillende groottes</description>
			<content:encoded><![CDATA[Zoals er staat, je mag een int geen size megeven, je hebt int of bigint voor verschillende groottes]]></content:encoded>
			<dc:creator>StarLite</dc:creator>
			<guid isPermaLink="false">https://gathering.tweakers.net/forum/list_message/24579090#24579090</guid>
			<pubDate>Thu, 10 Nov 2005 18:27:11 GMT</pubDate>
		</item>
		<item>
			<title>Venxir</title>
			<link>https://gathering.tweakers.net/forum/list_message/24579019#24579019</link>
			<description>Ik zit met een vaag probleem:
code:1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
CREATE TABLE Vlucht
(
vluchtnummer        integer(4)  NOT NULL,
Luchthaven      char(3),
Gate            char(1),
max_aantal      integer(3)  NOT NULL,
max_totaalGewicht   numeric(6,2)    NOT NULL,
max_ppgewicht       numeric(5,2)    NOT NULL,
tijdstip        char(4),
Maatschappij        char(2)     NOT NULL,
PRIMARY KEY (vluchtnummer)      
);

INSERT INTO Vlucht
VALUES (5310, &#039;DUB&#039;, &#039;C&#039;, 120, 2500, 20, &#039;HELP&#039;, &#039;KL&#039;)

Lijkt mij niks mis mee, maar SQL server 2000 geeft deze error terug:
code:1
2
Server: Msg 2716, Level 16, State 1, Line 1
Column or parameter #1: Cannot specify a column width on data type int.

Ik zit nu al een uur te zoeken naar een oplossing, misschien is hij heel voor de hand maar ik zie hem echt niet. Wie kan me helpen?  

Edit: let niet op de HELP </description>
			<content:encoded><![CDATA[Ik zit met een vaag probleem:<br>
<div class="code">code:<br><table class="phphighlight"><tr><td class="phphighlightline"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
</pre></td><td class="phphighlightcode"><div><pre>CREATE TABLE Vlucht
(
vluchtnummer        integer(4)  NOT NULL,
Luchthaven      char(3),
Gate            char(1),
max_aantal      integer(3)  NOT NULL,
max_totaalGewicht   numeric(6,2)    NOT NULL,
max_ppgewicht       numeric(5,2)    NOT NULL,
tijdstip        char(4),
Maatschappij        char(2)     NOT NULL,
PRIMARY KEY (vluchtnummer)      
);

INSERT INTO Vlucht
VALUES (5310, &#39;DUB&#39;, &#39;C&#39;, 120, 2500, 20, &#39;HELP&#39;, &#39;KL&#39;)</pre></div></td></tr></table></div><br>
<br>
Lijkt mij niks mis mee, maar SQL server 2000 geeft deze error terug:<br>
<div class="code">code:<br><table class="phphighlight"><tr><td class="phphighlightline"><pre>1
2
</pre></td><td class="phphighlightcode"><div><pre>Server: Msg 2716, Level 16, State 1, Line 1
Column or parameter #1: Cannot specify a column width on data type int.</pre></div></td></tr></table></div><br>
<br>
Ik zit nu al een uur te zoeken naar een oplossing, misschien is hij heel voor de hand maar ik zie hem echt niet. Wie kan me helpen?  <img src="https://tweakers.net/g/s/confused.svg" width="20" height="16" alt=":?"><br>
<br>
Edit: let niet op de HELP <img src="https://tweakers.net/g/s/clown.svg" width="16" height="16" alt=":+">]]></content:encoded>
			<dc:creator>Venxir</dc:creator>
			<guid isPermaLink="false">https://gathering.tweakers.net/forum/list_message/24579019#24579019</guid>
			<pubDate>Thu, 10 Nov 2005 18:16:45 GMT</pubDate>
		</item>
	</channel>
</rss>