| Thread | Last Post | Replies |
|
| some error in table definition | 31 Oct 2007 23:45 GMT | 10 |
if exists(select * from dbo.sysobjects where id = object_id(N'BBSItems') and OBJECTPROPERTY(id,N'IsUserTable')=1) drop table BBSItems
|
| How to: find the last time a procedure was compiled and why | 31 Oct 2007 22:23 GMT | 8 |
Does anyone know how to select the last time a stored procedure was compile and which recompile condition caused it? Thanks, E
|
| Error message on using union statement with order by using reserved words | 31 Oct 2007 15:07 GMT | 3 |
The part of my stored procedure giving me problems is this: *********************************************************************************************************************************** --------------------------------- -- FINAL OUTPUT - Two Record Sets
|
| dump and import data? | 31 Oct 2007 11:05 GMT | 2 |
Using SQL Server 2005 Dev and SQL Server Manager, how do I dump a table and it's data to a file then import it into another table? I see the options "Script Table as" and then the Create To, Drop To, etc. options, but all of those only put the structure in the file. What am I
|
| Error message in DTS | 31 Oct 2007 08:36 GMT | 1 |
In my DTS I am updating an Ingres database on a different server. I'm getting the following error immedtiately .... HResult of 0x80040e09 (-2147217911) returned Unexpected error occured. An error was returned without an error message
|
| Exporting email archive from SQL 2005 | 31 Oct 2007 00:23 GMT | 1 |
Total SQL newbie here. Hope I'm posting in the correct group. I have a Exchange 2003 server that archives all email to a large(55GB) SQL database. I have a situation where I have to export several emails from that database. However at this point I am clueless on how to
|
| Open SQL 2005 database question | 30 Oct 2007 16:21 GMT | 3 |
Shoud a SQL 2005 database remain open in a Visual Basic program, or should it be opened and closed in every subroutine? Thanks for any info.
|
| CONTAINS and wildcard | 30 Oct 2007 15:07 GMT | 2 |
Is it a good idea to have multiple contains? I have this query: Select * from myTable where contains (Col1, 'Africa') or (Col2, 'Africa') Also, I tried this, didn't return anything: Select * from myTable where contains (Col1, 'Africa*') or (Col2, 'Africa')
|
| Error message with stored procedure | 30 Oct 2007 12:44 GMT | 5 |
Could someone help me, I'm getting this error message: Procedure or function UpdateResources has too many arguments specified. Here's my stored procedure, I am trying to update four columns, two
|
| Two Tables with Left Outer Join & Where Clause | 30 Oct 2007 01:44 GMT | 3 |
I'm trying to link two tables... one for Employees and the other for Timecards I need to get a list of employees that do not have timecards on an SPECIFIC DATE
|
| Table joins and views nesting; maximum | 28 Oct 2007 21:48 GMT | 2 |
Whats the 'normal' maximum count of tables in a join and what if there are views involved. What about nesting views
|
| pass Column Name using Parameter in SQL Statement... | 28 Oct 2007 09:18 GMT | 5 |
I am trying to Pass Column Name(FieldName) using Parameter in SQL Statement... But i am getting error... how can i pass Column name using parameter??? Example:
|
| grouping query, concatenate records? | 27 Oct 2007 21:48 GMT | 1 |
How can I concatenate specific fields across records in a query? Here is the layout of my table: CREATE TABLE [rdb].[image_use]( [RecordID] [int] IDENTITY(1,1) NOT NULL,
|
| Can some explain this to me? | 27 Oct 2007 01:36 GMT | 2 |
I run the following query on a database (SQL 2005): delete from person where pers_companyid in (select pers_companyid from company where comp_expiry is not null) I wanted to delete all people associated with a company which had an
|
| ODBC Failed [Microsoft][ODBC SQL ...NamedPipes]ConnectionWrite (WrapperWrite()). | 26 Oct 2007 22:39 GMT | 1 |
I am getting the following intermittant error upon accessing data from my server: Run Time Error '3146' ODBC Failed [Microsoft][ODBC SQL Server
|