606 Posted Topics

Member Avatar for cy163

you'll need to use [code] Select table3.DocID, sum(table1.Freq + table2.Freq) as Freq -- your from and where group by table3.DocID order by SUM(table1.Freq + table2.Freq) desc [/code] i added the order by for clarity

Member Avatar for dickersonka
0
92
Member Avatar for hbmarar
Member Avatar for dickersonka
0
363
Member Avatar for ddanbe

how about [code] int myValue = 6000; Debug.WriteLine(Convert.ToString (myValue, 2)); [/code] little less lines of code

Member Avatar for ddanbe
0
339
Member Avatar for dag219

let me give a sample schema and maybe that will help you understand users USER_ID FIRST_NAME LAST_NAME log LOG_ID USER_ID LOG_MESSAGE LOG_DATE

Member Avatar for dickersonka
0
69
Member Avatar for liquoriser21

i think this is wrong [code] JDBC_DRIVER = getInitParameter("com.mysql.jdbc.driver"); [/code] you have a param in your config with this? try changing it to this, at least for debugging purposes [code] JDBC_DRIVER = "com.mysql.jdbc.driver"; [/code]

Member Avatar for liquoriser21
0
109
Member Avatar for peter_budo

it will allow up to 4 i would either go with some client side code, or used a stored procedure that will check the length before inserting and reject the data this does sound more like a business rule, so i would say keep it in the business logic portion …

Member Avatar for peter_budo
0
92
Member Avatar for stevenp123
Member Avatar for yugoza

its pretty clear some recommendation i would make, is to try to get it 3nf for example project->areas, this is a varchar, might consider making a separate table, but if its not that big of a concern then keep it the way you have it i think you will need …

Member Avatar for yugoza
0
138
Member Avatar for filch

create two tables, airportservices and userairportservices airportservices AIRPORT_SERVICE_ID AIPORT_ID SERVICE_ID userairportservices USER_AIRPORT_SERVICE_ID USER_ID AIRPORT_SERVICE_ID this will allow airport services to hold the services at the airport and the userairportservices to hold the relationship between user and airport_service

Member Avatar for peter_budo
0
129
Member Avatar for lyxus

1. no, you should still have your complete db, make sure they did a full backup 2. don't understand, where are you getting this data from? the backup? 3. you can do it right in sql server, depending on your version its either DTS or SSIS

Member Avatar for dickersonka
0
53
Member Avatar for sas0riza

not for sure, but i would say because that parameter was never used and i figure he took it out @DateRented become GetDate() @DateDue become GetDate() + 5 so i believe he originally had them in the stored procedure as parameters, and then removed them to fix the problem, as …

Member Avatar for dickersonka
0
94
Member Avatar for cy163

yes that should work you could also use a subselect on the table [code] select DISTINCT col1 FROM t1 WHERE ..... and col1 in (select DISTINCT col1 from t1 WHERE .....) [/code]

Member Avatar for dickersonka
0
79
Member Avatar for rajkishore

are you sure you have permission to that directory from iis? try moving the images to inetpub in your directory there also if that doesn't work, use [code] Server.MapPath(imagePath); [/code]

Member Avatar for dickersonka
0
61
Member Avatar for scorpionz

is the user on the system? or is the user only in the database? and which user are you creating the folders with?

Member Avatar for scorpionz
0
105
Member Avatar for AceAtch
Member Avatar for xman12

very clear question and thanks for showing your effort and what you are having trouble with i'm not too big on vocabulary, but you want to try to get the database to use third normal form something like this for your bookingrecords table bookingrecords CLIENT_ID DATE REQUIRED_HOURS REQUIRED_SERVICE_CODE clients CLIENT_ID …

Member Avatar for xman12
0
206
Member Avatar for adityakiran.m

sure, post what you have then we can go from there don't get caught up that this is a repeater, a repeater is very simple, it just automatically loops through the datasource for you

Member Avatar for adityakiran.m
0
122
Member Avatar for AmyxD

what about this [code] Apercent = (((double)Acounter/counter)*100.0); [/code]

Member Avatar for dickersonka
0
143
Member Avatar for xman12
Member Avatar for dickersonka
0
100
Member Avatar for jsully1

same thing as in the forum PreparedStatements [url]http://java.sun.com/docs/books/tutorial/jdbc/basics/prepared.html[/url]

Member Avatar for jsully1
0
131
Member Avatar for Arvinder Sharma

if you are able to get records from one, why are you having trouble with the other? post your code as well, so we can help

Member Avatar for LizR
0
134
Member Avatar for kayeri

Are you talking about creating an email, or just adding a document to be postback? Take a look at the fileupload control

Member Avatar for dickersonka
0
42
Member Avatar for onidarksheik

i would create a method called isInSet and you iterate through the characters and check, you can't do a character check the way you are wanting to unless you add them to a list or an array of some sort

Member Avatar for onidarksheik
0
2K
Member Avatar for gumber

this might be classic, but how about something that will show you your network of unix servers, uptime, what they offer(mysql, apache, ....)

Member Avatar for dickersonka
0
46
Member Avatar for mattlew62

so you aren't having trouble submitting the forms, you just need to know how to create calendar appointments? [url]http://www.outlookcode.com/codedetail.aspx?id=775[/url] do a google search for exchange with c#

Member Avatar for dickersonka
0
158
Member Avatar for LizR
Member Avatar for mangel.murti

either go with a timestamp or id column, assuming its an integer or bigint [code] select * from table order by idcolumn desc limit 10 select * from table order by timestampcolumn desc limit 10 [/code]

Member Avatar for dickersonka
0
106
Member Avatar for mahvash

the syntax for java really isn't that much different, the declarations for classes, inheritance, variables, and getters/setters and some key points that will be different

Member Avatar for dickersonka
0
86
Member Avatar for spongebabelhyne

not necessarily like you are wanting i doubt you can create a linked server from mssql and do it [url]http://www.microsoft.com/technet/prodtechnol/sql/2000/deploy/mysql.mspx[/url] its a link for 2000, but should still work

Member Avatar for dickersonka
0
102
Member Avatar for edensigauke

please put code in code tags, give us a specific error or problem you are having, and show us what piece of code you are having trouble with

Member Avatar for stultuske
0
164
Member Avatar for Tank50

you need to check the rpc service on the remote machine you are saying transfer your xml file from the remote machine all the information you need? or you are transferring to the remote machine?

Member Avatar for LizR
0
98
Member Avatar for konczuras

row count is easy, just use [code] select count(*) from table [/code] what is the character set of the db?

Member Avatar for canonzone
0
367
Member Avatar for ansari.wajid

first you are missing an else on your first if checking jobid after the insert use, [code] return @@IDENTITY [/code] from codeside add a parameter with [code] ParameterDirection.ReturnValue; [/code]

Member Avatar for dickersonka
0
209
Member Avatar for mrkcse

think you got your revision number hardcoded probably if its not changing, take a look at your assemblyinfo.cs file you can do this get revision to change automatically [code] [assembly: AssemblyVersion("1.1.1.*")] [/code]

Member Avatar for mrkcse
0
115
Member Avatar for doel.jangkrik

it is because although text and varchar may look the same, they are not, the actual data is a different type and can't be compared without converting recommendation the only part that should be in the where clause is the jobid and it should be an int or bigint value …

Member Avatar for dickersonka
0
91
Member Avatar for llemes4011
Member Avatar for llemes4011
0
203
Member Avatar for Mattmans1

well it sounds like you have your idea already your spec should say what the existing company has, what you are going to do for them, what they will be able to do when you finish, and how you will accomplish this as far as the website it will be …

Member Avatar for dickersonka
0
96
Member Avatar for askhan

[code] for ( int i=0; i<num; i++ ) { result += str + "\n"; } [/code]

Member Avatar for askhan
0
80
Member Avatar for Rocket452

lol wow, msdn is terrible here's a different link, but still everything is the same concept [url]http://en.csharp-online.net/Working_with_Data%E2%80%94Using_the_DataGridView[/url] the steps are pretty basic, create a connection, create a dataadapter, execute a query to fil lthe datasource, and set the datasource on the gridview

Member Avatar for rapture
0
458
Member Avatar for smakos
Member Avatar for lakshma.sugunan

sql plus is for oracle not for sql server how are you inserting the record? i think you are meaning autoincrementing here is how to do it in oracle [url]http://www.lifeaftercoffee.com/2006/02/17/how-to-create-auto-increment-columns-in-oracle/[/url]

Member Avatar for dickersonka
0
80
Member Avatar for Cerin

you could use SQL Profiler and it will show you all queries being executed, it will save you a lot of work from creating new tables and triggers and show you all sql statements being ran

Member Avatar for dickersonka
0
69
Member Avatar for dev.cplusplus

dangerous, yes and not recommended here's a post about what you want to accomplish [url]http://bytes.com/forum/thread458947.html[/url]

Member Avatar for dickersonka
0
116
Member Avatar for denbou
Member Avatar for MichelaDee

Born and raised in West Virginia. Pretty tough on the programming job market there, thats why I'm in Atlanta now. Good job on getting an opportunity.

Member Avatar for dickersonka
0
80
Member Avatar for BeEasy

When you say there is a relationship between the admin and the other entities, what do you mean? They are allowed to edit as far as UPDATES, INSERTS, and DELETES or do you mean the admins are the owners of the movie hall? And just to be sure, hall means …

Member Avatar for timothybard
0
132
Member Avatar for cy163
Member Avatar for jayzinho88

Calm down Post the section of code that is not working properly and let us know your problem, then we will help its much easier to work on pieces of the complete problem, than the whole thing all at once

Member Avatar for dickersonka
0
78
Member Avatar for bigbadowl

See if this changes anything [code] while ((bytesRec = sender.Receive(bytes)) > 0) { Response.Write(Encoding.UTF8.GetString(bytes,0,bytesRec)); } [/code]

Member Avatar for dickersonka
0
1K
Member Avatar for emilio

you need to install sql server express, along with management studio, management studio is only the gui front end

Member Avatar for dickersonka
0
56

The End.