Viewing 15 posts - 1 through 15 (of 46 total)
Please Ignore this. I figured it out.
May 31, 2017 at 3:44 pm
Based on the information provided,
If the roles are fixed then I would design it in the denormalized manner:
MarkKey (SurrogateKey)
StudentKey (Foreign key to Student)
Marks
HODApprovedDate
PrincipalApprovedDate
UniversityApprovedDate
etc
If roles are configurable then 2 tables
StudentMarkKey...
October 20, 2016 at 11:56 am
Thank you again and understood.
Does everything that apply to data warehouse also apply to datamart? We are not really IT and not making a datamart for my company. We make...
April 17, 2015 at 6:58 am
Thank you Lempster and Andrew. Really appreciate your help.
I'll start with the books you suggested. I was also looking at the book "The Data Warehouse Toolkit: The Definitive Guide to...
April 16, 2015 at 8:49 am
Sachin Nandanwar (6/20/2014)
The deadlocks now typically involve inserts and deletes from the filter table and CRUD action against a table that has a foreign key to master table. The deadlocks...
June 23, 2014 at 8:06 am
stevenb 63624 (10/31/2013)
October 31, 2013 at 10:08 am
stevenb 63624 (10/31/2013)
October 31, 2013 at 9:12 am
If you have ready database then maybe try to reverse engineer and generate the scripts by using SSMS "Create scripts" functionality.
August 27, 2013 at 7:03 am
anupam.jha (8/26/2013)
But, some of the views are dependent on other views. Thus, I am not able to create the Views...
August 26, 2013 at 2:21 pm
ScottPletcher (8/9/2013)
SQL will only be able to do a seek on that index if it's...
August 9, 2013 at 10:39 am
Thank you everybody for the reply. Sorry for replying late as I got caught up in something else.
I don't really mind increased storage as long as I get...
August 9, 2013 at 7:25 am
Sean Lange (8/7/2013)
SELECT TOP (500) test.[TestId]
FROM tblTest as test
WHERE test.EndDateTime < @Date OR test.StartDateTime < @Date;
The next question...
August 7, 2013 at 11:46 am
raghuldrag (8/7/2013)
alter procedure save_draft
(
@username varchar(20),
@departure datetime,
@request int,
@error Varchar(100)=null output
)
as
begin
declare @userid varchar(20)
select
August 7, 2013 at 9:29 am
raghuldrag (8/7/2013)
i ve the table like
travel_request
create table travel_request
(
request_id int identity,
user_id varchar(20),
travel_purpose varchar(20)
)
insert into travel_request (user_id,travel_purpose) values ('012','Market Visit')
journey
create table journey
(
request_id int references...
August 7, 2013 at 9:10 am
Viewing 15 posts - 1 through 15 (of 46 total)