| Thread | Last Post | Replies |
|
| CLR proc that access a COM object | 08 Jul 2008 21:58 GMT | 1 |
I need to access a COM object (C++) from a stored proc. the interface is too complicated for SQL (using sp_OACreate and the like) so i thought i would write a .net proc as a wrapper for the COM object. I don't see how to add a reference to the COM object. When i try to add a ...
|
| SQL diuplicat query | 08 Jul 2008 21:31 GMT | 6 |
Hi i'm trying to reproduce this query using temporary tables, i need to make it faster SELECT rough_ID, naasra, road_ID, end_m, direction FROM rough WHERE EXISTS
|
| Help with CTE syntax error | 08 Jul 2008 21:25 GMT | 4 |
Can anyone help me with "incorrect syntax near 'cte'"? Thanks in advance, Lars with cte as
|
| order clause | 08 Jul 2008 20:35 GMT | 4 |
I have a table with state field, if the state is no correct we have XX as state. how can I show in my report the XX first and the rest of states after in order like:
|
| OrderId Query | 08 Jul 2008 19:49 GMT | 4 |
I have a table Orders with OrderId(PK), EventId(FK to Events) OrderId EventId 2 33 2 38
|
| SQLQuery | 08 Jul 2008 19:26 GMT | 2 |
I have a table Orders with OrderId(PK), EventId(FK to Events) OrderId EventId 2 33 2 38
|
| Moving data | 08 Jul 2008 18:55 GMT | 5 |
I'm sure that this question has been asked hundred's of times but really don't know how to search for it. I have 3 fields that contain street address information. The fields are PrimaryAddress, PrimaryAddress2, PrimaryAddress3
|
| best datatype | 08 Jul 2008 17:50 GMT | 5 |
I need to upload a file from .xls that have following columns: Emp Dept A 5 B 6;8
|
| Quick question on stored procedures,.. | 08 Jul 2008 17:21 GMT | 3 |
I'm in the process of building an insert and update stored procedure, as one of the fields involved in the insert can contain so much data, I'm using a field type ntext, the problem that I'm having is that my stored procedure doen not recognise the field type ntext?
|
| Alter tabe set default is not working | 08 Jul 2008 15:47 GMT | 1 |
ALTER TABLE MyCustomers ALTER COLUMN CompanyName SET DEFAULT 'A. Datum Corporation' follwing error comming Msg 156, Level 15, State 1, Line 1
|
| Which systemtable or view hold the default values | 08 Jul 2008 13:55 GMT | 4 |
CREATE TABLE [dbo].[ASSESSMENT]( [est_id] [int] NOT NULL DEFAULT ((0)), [overall_assessmnt] [float] NULL, [bldg_assessmnt] [float] NULL,
|
| Specific records based on date (Today & yesterday) | 08 Jul 2008 12:29 GMT | 7 |
I have a webform that enters records into a basic database. I would like to retrieve every record that was inserted today as well as the last one from the previous day. Any suggestions?
|
| update joined tables | 08 Jul 2008 12:23 GMT | 30 |
Apparently this is not legal t-sql : update table1 t1 join table t2 on t1.t2id = t2.id set t1.col1 = 'new value 1', t2.col2 = 'new value 2' Why doesn't t-sql allow this ? Is this inability a function of the db
|
| Query Help | 08 Jul 2008 11:09 GMT | 1 |
I have a table as follows col1-----col2-----col3-----col4 --------------------------------------- 30 1 11 111
|
| Convert VB function to SQL function | 08 Jul 2008 10:53 GMT | 3 |
I have to convert VB function to SQL: Function CalcCompItem() Dim mValue1 Dim mValue2
|