Viewing 15 posts - 24,931 through 24,945 (of 26,490 total)
Jack,
I tried creating an Alert, but it doesn't seem to fire. Is there something else that needs to be done that I may be missing? I was sure...
April 3, 2008 at 10:48 am
Well, that last bit of info may be a bit old, but it was valid at my last employer. The reports were run on an automated schedule then dumped...
April 3, 2008 at 10:47 am
I also think it depends on the type of reports created as well. If the reports used by users are static, you may not need to count those users....
April 3, 2008 at 10:13 am
WILLIAM MITCHELL (4/2/2008)
April 2, 2008 at 10:28 pm
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
Viewing 15 posts - 24,931 through 24,945 (of 26,490 total)