| Thread | Last Post | Replies |
|
| Table Documentor | 20 Oct 2005 23:10 GMT | 3 |
I am sort of new to SQL. I use MS-Access most of the time so I do not know if you can do this, but... In MS-Access there was a tool called documenter that would list out the table def's such as fields, sizes, data types, etc. Is there such a thing in
|
| historical data | 20 Oct 2005 23:07 GMT | 1 |
A general data design question: We have data which changes every week. We had considered seperating historical records and current records into two different tables with the same columns, but thought it might be simpler to have them all
|
| Using "SELECT * " is a bad practice even when using a VIEW instead of a table? | 20 Oct 2005 22:53 GMT | 10 |
Using "SELECT * " is a bad practice even when using a VIEW instead of a table? I have some stored procedures that are identical with the difference of one statement
|
| How do I concatenate text to a sql statement | 20 Oct 2005 21:18 GMT | 1 |
The following sql statement fails: SELECT IdFlight, OrganizerLastName + ", " + OrganizerFirstName + " Flt:" + FlightNumber As Concat FROM TableFlights Order By OrganizerLastName, OrganizerFirstName
|
| Replicate table | 20 Oct 2005 20:00 GMT | 2 |
how can i replicate my customer_master to a table customer from a sql statement. I tried the following without success. Any one know the correct statement CREATE TABLE customers AS SELECT * FROM custmoer_masters
|
| Derived tables from multiple resultsets | 20 Oct 2005 16:55 GMT | 2 |
I want to return a derived table along with 4 simple tables in a stored procedure as follows: Input parameter: @FtNum (==Order Number, selects one Order and all associated data)
|
| Calling a Data Pump task from DTS? | 20 Oct 2005 16:40 GMT | 3 |
I have a vbscript to read all files from a directory and, if the file is valid, I would like my DTS to process it. I tried using the vbscript as an ActiveX workflow script in the DTS, but it does not execute the data pump until it has completed looping through all the
|
| Upgrading from SQL 6.5 to current production SQL 2000 | 20 Oct 2005 16:17 GMT | 2 |
We currently have a production database on SQL 2000 and have a separate 6.5 database running on a different machine, both on NT with the appropriate service packs. We have been reviewing the white papers to prepare for the upgrade but are curious to know if there are any issues ...
|
| Unique Selections In Back End | 20 Oct 2005 06:46 GMT | 18 |
I am using SQL 7 with an MS Access 2000 MDB front end, using bound forms with ODBC linked tables. In one form, the user needs to be able to check a box to select one or more records. This is accomplished with a local table containing two fields: the primary key value of the SQL ...
|
| New instance of SQL question | 20 Oct 2005 06:16 GMT | 2 |
After I've installed a new instance of SQL server 2000 standard, I will apply the service pack. Do I need to re-apply the service pack to the existing default installation as well? Thanks,
|
| Compression/Decompress | 20 Oct 2005 03:36 GMT | 1 |
In 2005 or less, are there any built-in routines to compress and decompress "memo" type data?
|
| proper case? | 20 Oct 2005 03:21 GMT | 2 |
Is there a function I can use in my view to cause a field to be displayed in proper case (first char of each word upper case, rest lower)?
|
| SQL query question | 20 Oct 2005 01:13 GMT | 1 |
Why would a variable not be recongized in a subquery? I get this message - Server: Msg 8155, Level 16, State 2, Line 5 No column was specified for column 1 of 'A'.
|
| Database Access over Internet | 20 Oct 2005 00:14 GMT | 3 |
I was wondering if any body has used Internet as a WAN (Wide Area Network) to provide database access. I know about web services but I like to experiment with using Internet as a extended network (web server behind one router and database behind another). Any ideas on
|
| Identifying results sets when stored procedure called multiple times | 19 Oct 2005 22:58 GMT | 3 |
I have a report based on our product names that consists of two parts. Both insert data into a temporary table. 1. A single grouped set of results based on all products 2. Multiple tables based on individual product names.
|