all groups > sql server (alternate) > april 2007 > threads for april 29 - 30, 2007
Filter by week: 1 2 3 4 5
Damn Newbie
Posted by Shane at 4/30/2007 7:09:20 PM
I am looking to make a program using express edition Visual C#. I want my
application to interact with Microsoft SQL server, create tables, inserts,
lookups, the normal.
First I would like to read the documentation,and now to the point of my
post. Due to the (recently pointed out) ineptitude... more >>
Query help: Item below reorder level-find all items for same vendor
Posted by rdraider at 4/30/2007 4:54:55 PM
Use the Northwind database Products table as an example.
Purchasing dept gets a report showing when inventory items on hand qty are
below the reorder level.
easy enough:
Select ProductID, ProductName, SupplierID, UnitsInStock, ReorderLevel
from Products
where (UnitsInStock < Reord... more >>
Replicating database btw two sites why aren't the tables identical in size?
Posted by war_wheelan NO[at]SPAM yahoo.com at 4/30/2007 7:43:38 AM
I am replicating an 80GB database between NY can CT and would like to
know why table sizes are different between the two.
Here is an example of sp_spaceused::
NY IOI_2007_04_23 rows(279,664) reserved(464,832)
data(439,960) index_size(24,624)
CT IOI_2007_04_23 rows(279,666) reserv... more >>
Create One Trigger For Both Update and Delete
Posted by satish at 4/30/2007 6:02:57 AM
hi,
CAn i have one trigger for both Update and Delete
Delete Trigger
---------------------
create Trigger [tr_delete_user_log]
on [dbo].[user_log] for delete
as
begin
insert into z_user_log select * from deleted
end
Trigger Update
---------------------
CREATE Trigger [tr_update_user_lo... more >>
Oracle 9i Database Administration in 10 Minutes
Posted by takveen NO[at]SPAM gmail.com at 4/29/2007 5:08:43 AM
The Topics Covered In This Book Are: Understanding the Oracle
Environment; Understanding the Oracle Instance; Understanding the
working of Oracle Instance; Understanding the Oracle Database; Oracle
9i Software Installation; Oracle 9i Database Design using DBCA;
Enabling other computers to access... more >>
|