all groups > sql server programming > january 2006 > threads for saturday january 7
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
Access SubQuery Help Needed.....................
Posted by Hexman at 1/7/2006 3:55:57 PM
Don't know if this is the proper newsgroup to post to. Sorry if not.
Can't figure this one out. Using Access 2003. I have 2 tables, IMast
(table of part info) and THist (part transaction history).
I need to select all parts that have a product code = "CAST" and list
the last 10 history tr... more >>
duplicate number
Posted by Trond Hoiberg at 1/7/2006 1:18:22 PM
I have a table with customers that is imported from Axapta 3.0. I have
imported them into a table that is a clone of Axapta table.
I see that i have rows where account number is the same. So it appears that
they have inserted same customer with same accountnumber several times.
So lets say... more >>
Connection closed durring application execution
Posted by Amir Shitrit at 1/7/2006 11:50:02 AM
I'm using Sql Server 2000 in my .NET application.
Once the application created a connection, the connection seams to stay
opened even after the server was stopped.
Why is it happening, and it there a way for my app to get events when the
server is off?... more >>
[OT] Job Posting
Posted by Mike Labosh at 1/7/2006 10:57:45 AM
We're having corporate layoffs here, so there's about 50 of us scrambling to
find work.
I just came across a post on dice.com where the company says that they have
50 years of leading edge experience in the IT Industry ( wha?)
Then there was the guy that asked me how much production work ... more >>
DateTime variables
Posted by Darren Rhymer at 1/7/2006 9:36:01 AM
Hi all
Sorry if this is in the wrong place, please tell me if it is.
I've got a SQL 2000 database and I'm having problems selecting rows where
the value of a datetime column (with date and time) has to be less than
todays date with no time.
I can't work out how to do this. I've tried:... more >>
A little advice about locks with SQL 2000
Posted by ChrisDangerfield at 1/7/2006 5:12:07 AM
Hi there,
I am hoping someone can give me a little advice about locks.
I have just finished reading a chapter about them in a reference book
and i am now more confused than when I started.
What I want to do is simple, i hope.
I have multiple users selecting from the same table, I am wor... more >>
Cursor loop is broken
Posted by sblar at 1/7/2006 2:43:15 AM
In a stored procedure (SP1) I am looping through a cursor with records
from Table1. Each record in the cursor is inserted into Table2.
Insert trigger on Table2 is inserting the record into Table3 (in
another DB).
In the insert trigger on Table3, a series on checks are done on the
inserted recor... more >>
sql profiler vs. query analyzer
Posted by Gerard at 1/7/2006 2:30:19 AM
Hi,
I'm trying to improve on a query in one of my scripts and noticed that
execution time in query analyzer is several seconds where as in sql
profiler the start and end time of the statements (including
declaration of variables) is within the same millisecond. What am I to
make out of this (... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Alter column add constraint unique
Posted by Jeff User at 1/7/2006 12:57:06 AM
Is it possible to alter a table column data type AND add a unique
constraint at the same time?
I can get this to work
ALTER TABLE tablename ALTER COLUMN colName DataType(optional size);
and I can get this to work
ALTER TABLE tablename ADD CONSTRAINT UQ_myConstraint UNIQUE
but I can't g... more >>
Most efficient way to write this
Posted by Tim at 1/7/2006 12:33:54 AM
I have the following:
ID Name
1000 Smith
1000 Jackson
1000 Fastow
1001 Carr
1002 Michaels
I want the following output: Only distinct ID and first Name
1000 Smith
1001 Carr
1002 Michaels
H
... more >>
|