all groups > sql server programming > july 2005 > threads for sunday july 24
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
Very simple question
Posted by Xee at 7/24/2005 5:35:47 PM
I’m getting an error I don’t completely understand while trying to do
some homework for an Intro to Database Management class. Just to give
some reference, here is what the question asks:
"Create a view called CustOrder which contains the customer number,
name, balance, order number, and order... more >>
Four Part Naming Issue
Posted by Clint Colefax at 7/24/2005 4:13:06 PM
I have a system that execute queries across two databases. Up until now,
these 2 database have been situated on the same server, however the system
was built so these two databases could exist across multiple servers. To do
this, four part naming was employed, even if the database was on the s... more >>
Stored Procedure template
Posted by Craig HB at 7/24/2005 2:48:01 PM
I am building a template to use for stored procedures. If anyone has any
comments, suggestions or advice, please let me know. Also, if anyone has a
template that they use, it will be helpful to see it.
Thanks,
Craig
CREATE PROCEDURE StoredProcedureTemplate
@Parameter1 char(1),
@Pa... more >>
Help Please!
Posted by Scott at 7/24/2005 12:13:03 PM
I have two tables Table1 and Table2.
Table 1 has columns
A1,A2 and A3. A1 is an identity column that has numbers stored in ascending
orders corresponding
to the number of records in the table.
A2 is a varchar column that has the values in it, but not stored in any order.
Now I want t... more >>
Unable to re install Sql 2000
Posted by John Linville at 7/24/2005 12:12:37 PM
Hi
Had to transfer all apps etc from a HD of a fried computer to a LapTop using
PC Relocator.
Most things transfered good except MS Developer Edition SQL 2000
Did an unistall of SQL 2K when I found it wasnt working,
When I try to Install from the CD a message comes saying
"A previous progr... more >>
Help with a Query
Posted by george.durzi NO[at]SPAM gmail.com at 7/24/2005 11:46:30 AM
Here is some drastically stripped down DDL for a Help Desk system I
wrote. I only left the relevant columns, and didn't script any of the
relationships, etc.
CREATE TABLE [HelpDesk_Issue] ([Id] [int])
GO
INSERT INTO HelpDesk_Issue ([Id]) VALUES (1)
GO
CREATE TABLE [HelpDesk_IssueHistory... more >>
Help!
Posted by Scott at 7/24/2005 11:10:03 AM
I have two tables Table1 and Table2.
Table 1 has columns
A1,A2 and A3. A1 is an identity column that has numbers stored in ascending
orders corresponding
to the number of records in the table.
A2 is a varchar column that has the values in it, but not stored in any order.
Now I want t... more >>
multiple column values into a single value
Posted by alon at 7/24/2005 3:59:07 AM
hi all,
I am trying to take all the values from a single varchar column and to inset
them into a variable so that they are seperated with the '-' sign.
I am trying to avoid cursors.
by the way- all the rows have a column with the same value in the table
for example:
create table test (col1 i... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Additional JOIN altering values
Posted by Earl at 7/24/2005 1:21:33 AM
Can anyone see why I would get different GrossSales values by adding the
JOIN on LaborJobCosts?
**********************************************
This gives the correct GrossSales values:
DECLARE @BeginSaleDate datetime
DECLARE @EndSaleDate datetime
SET @BeginSaleDate = '6/1/2004'
SET @EndS... more >>
Please help me........
Posted by Bpk. Adi Wira Kusuma at 7/24/2005 12:00:00 AM
First, I've data like it
field1 field2
----------------------------
a1 3
a1 3
a1 4
a1 23
b1 35
b1 35
b1 30
b1 ... more >>
How to copy DTS package?
Posted by Bpk. Adi Wira Kusuma at 7/24/2005 12:00:00 AM
I've created a DTS package. Then I want to copy it to another computer (not
networking/stand alone). My imagine, it can be copied to disc. So I can
rebuild it form its disc. Is My imagine right? or Can I do it?
... more >>
How to passing variable date on DTS Package?
Posted by Bpk. Adi Wira Kusuma at 7/24/2005 12:00:00 AM
How to passing global variable (type:date) on DTS Package? Because i run dts
package, table destination always be empty.
exec master..xp_cmdshell 'dtsrun /s . /u sa /p adiw /n Import1 /a
Tgl1:7="1/1/2004" /a Tgl2:7="12/31/2004"'
Is this syntax corect?
Oh yeach....... How to set global var... more >>
|