Search Results

2
votes
4answers
200 views

Make SQL Server index small numbers

We're using SQL Server 2005 in a project. The users of the system have the ability to search some objects by using 'keywords'. The way we implement this is by creating a full-text catalog for the s …
0
votes

Is there an open source SQL Server DB compare tool?

Hmm, none that I know of. You can always retrieve the definitions as SQL and then run a diff tool on them, but it's a bit of a pain in the rear. Probably the best solution for this is using …
0
votes

What’s the fastest way to bulk insert a lot of data in SQL Server (C# client)

Have you tried using transactions? From what you describe, having the server committing 100% of the time to disk, it seems you are sending each row of data in an atomic SQL sentence thus fo …
2
votes

SQL Server Device or User CAL

Well, there's a big difference between a Device and a User CAL. Device CALs provide access to a "device" (namely a client computer most of the time), no matter how …
0
votes

Would building an application using a Sql Server Database File (mdf) be a terrible idea?

I don't understand... what do you mean by "having an MDF file in App_Data"? You need a proper SQL Server installation for that to work. You can always use the free SQL Server Express for developing …
0
votes

Make SQL Server index small numbers

Well, I did that, removed the "noise-words" from the list, and now the behaviour is a bit different, but still not what you'd expect. A search won't for "Terminator 2" (I'm just making thi …
1
vote

How do I create a Jet ODBC link to a SQL Server view with periods in the field names?

Just guessing here: did you try escaping the dot? Something like "[Seq\.Group]"? …
1
vote

Ranking Students by Grade in SQL

You should use "ORDER BY": SELECT * FROM Students ORDER BY Date,Rank That will order the data by date, then rank. You can add as many fields as you want, as long as they are compara …