Viewing 15 posts - 241 through 255 (of 530 total)
I've been looking into this a bit closer.
You might be able to solve this using a view as FACT table and/or as the Dimension table for currencies.
For the FACT...
July 9, 2003 at 5:45 am
You can use a cursor and the 'WHERE CURRENT OF' clause in your update.
July 8, 2003 at 9:26 am
You can use either the SET or SELECT syntax. Both have their (dis)advantages.
SET @Name1 = Month1
SET @Name2 = 535.46
or
SELECT @Name1=Month1, @Name2=535.46
The...
July 8, 2003 at 2:40 am
Ryan,
In my opinion there is no reason at all to not replace NULLs in your fact table by references to a 'N/A' record.
I can see your management's point if you're...
July 8, 2003 at 1:41 am
You could add a 'Not Defined' value to your currency table and update all 'NULL' values in the fact table to point to this one.
I guess this is about the...
July 7, 2003 at 9:29 am
Frank,
Congratulations.
Seems odd to me that you still have some spare time, looking at the number of posts you have
July 7, 2003 at 4:21 am
Should be no problem.
.Net offers a number of wizards for creating Web Services, but there is nothing to keep you from writing the front for a Web Service in ASP....
July 7, 2003 at 3:29 am
Try
UPDATE TableA SET
Field1 = tableB.Anotherfield1,
Field2 = tableB.Anotherfield2,
...
FROM
tableB
WHERE tableB.ID = 1
July 3, 2003 at 9:49 am
For the first problem.
Creating 'linked' tables should work. The procedures might be more efficient since the SQL server engine is more powerful. However, you do introduce network overhead, so this...
July 2, 2003 at 7:40 am
Agree with David. You cannot do this using just the foreign key relationships. The table layout with the TestOrg and Person tables having a FK relationship to the Address table...
July 2, 2003 at 7:35 am
You can create jobs using Enterprise manager. Go to your server->Management->SQL Server Agent->Jobs.
You can add a new job. It acts much like any scheduler kind of stuff. You can set...
July 2, 2003 at 7:29 am
You could add everything to a Job and start that from Access. I'm not sure under what security context a job runs if you start it manually.
July 2, 2003 at 4:59 am
You could use triggers without any problem. But you have to take care that they are fired upon EVERY insert or update you do.
So if the load of the queries...
July 2, 2003 at 2:51 am
There is no 'order of records' in a relational database. Even if SQL Server does apply some rules concerning the way in which the data is returned (in order of...
July 1, 2003 at 8:53 am
Viewing 15 posts - 241 through 255 (of 530 total)