Viewing 15 posts - 24,931 through 24,945 (of 26,486 total)
I'm not with Microsoft eithr, but based on my multiple readings of the licensing for SQL Server 2005, if you install Reporting Services on another server (other than the one...
April 2, 2008 at 10:51 am
terrence_daniels (4/1/2008)
How come I can not use update instead of create. I do not wish to create a new table, I just want to update the column?
The "create" in my...
April 1, 2008 at 2:25 pm
Use this as a basis for writing your update query:
create table #MyTable(
RowId int,
RowDataCol1 char(10)
)
go
insert into #MyTable (RowId, RowDataCol1)
select 1, 'Data 1' union
select...
April 1, 2008 at 11:37 am
How are new rows added to the table, and when do they get numbered?
April 1, 2008 at 11:13 am
If you could provide the DDL for the tables (at least the key fields plus any non key fields used in the joins), some sample data (based on the DDL...
April 1, 2008 at 11:11 am
Sql Student (4/1/2008)
But i need to pull out data from table 2 that is not present in table 1 along with the...
April 1, 2008 at 10:30 am
Are the row numbers the only way to identify the rows? Does the table have any other means to identify the order the data was entered?
SAMPLE DATA, TABLE DDL,...
April 1, 2008 at 10:20 am
If DC means Domain Controllers, my advice is to get the databases of them and onto their own dedicated server(s).
😎
April 1, 2008 at 9:57 am
Okay, I guess we are missing the point, so show us. Please provide the DDL for the table, sample data (in the form of an insert statement with union...
April 1, 2008 at 9:41 am
I have to agree with Grant and Steve. In our DW project, I have seperated the system tables ([PRIMARY]) from the data [DATA], default), non-clustered indexes ([Indexes]), and indexed...
April 1, 2008 at 9:31 am
Are you renumbering the rows after every insert, or are you looking for a means to update the row_number field as records are inserted? Can more than one row...
April 1, 2008 at 9:24 am
How about post the DDL for the tables, some sample data for each table (in the form of an insert statement with union all select statements), and what the output...
April 1, 2008 at 7:57 am
Another solution is this:
create table dbo.patient (
pt_id int,
pt_name varchar(20),
pt_dob datetime
)
go
create table dbo.charge (
ch_id int,
...
March 31, 2008 at 2:11 pm
The DDL for the tables, some sample data, and the expected output based on the sample data would be helpful.
😎
March 31, 2008 at 11:34 am
Viewing 15 posts - 24,931 through 24,945 (of 26,486 total)