Viewing 15 posts - 2,131 through 2,145 (of 2,267 total)
I am curious why you need this information.
Are you preparing to write the monster SELECT statement and want to see what system can handle it?
Or are you simply doing a...
June 17, 2008 at 8:27 am
You could use a join to match the View and Table on GENDATANUM
and then use where conditions to select the records that do not match
SELECT GENDATANUM, ...
June 17, 2008 at 5:12 am
I find it amazing that people can work in the IT/Software industry and promote this sort of copy write infringement.
Also most of these books are around $30 even cheaper...
June 16, 2008 at 11:12 am
I'm not sure if there is a max number of AND OR statements in SQL 2000, Surely the logical and practical limit would always be a lot less than...
June 16, 2008 at 8:56 am
A View could help in this situation as you have a few joins,
but first i would look at writing a more optimized query.
For example
(b.strTitle like '%' + @Keyword +...
June 16, 2008 at 4:59 am
It depends.
Are you using a lot of Joins or Aggregations it your query?
June 16, 2008 at 4:44 am
The only way you can really prepare for this is to get hold of a copy and build a demo application and learn your way around the system. If you...
June 16, 2008 at 4:20 am
Setup an ODBC connection to your database.
Click on data -> Import External Data -> New database query
and select your database or an exsisting query
The data can be easily refreshed...
June 13, 2008 at 9:54 am
Fair enough, VPN would be the case if large amounts of data is to be transferred.
Financial application can mean a lot of things though and not enough...
June 13, 2008 at 7:56 am
The VPN suggestion is one way, but it would be costly and maybe difficult to convince your clients to set up all this infrastructure to get your application working.
You...
June 13, 2008 at 7:10 am
No you can't sorry.
you will have to do this through a front-end application
June 12, 2008 at 10:48 am
Could it be a case of your disks filling up with the transaction log?
have you checked for free space?
June 12, 2008 at 10:28 am
You could steup some API calls to your SQL server, put these APIs on IIS that is located on the same network as your SQL server.
The customer applications...
June 12, 2008 at 6:11 am
yes there are ways,
What sort of network does your organisation have?
June 12, 2008 at 4:45 am
Use a stored procedure,
with a LIKE clause in the where statement
or if you want better matching you can use character matching or pattern matching.
Post you table DDL and some sample...
June 11, 2008 at 10:43 am
Viewing 15 posts - 2,131 through 2,145 (of 2,267 total)