Viewing 15 posts - 1 through 15 (of 15 total)
Hi Dev,
Thanks for your response. Am I right in assuming that this "Fact Less Fact" table is a bridge table? If not can you please tell me if bridge table...
May 25, 2012 at 5:59 am
Hi Dev,
Thanks for your response. Each vacancy in my database is linked to more than one industry and role. In such case how do I design my fact table?
Cheers
May 23, 2012 at 3:52 pm
Hi Vladan,
Thanks for the response mate. After wasting nearly 1 day on this problem, I also came to the same conclusion.
Phani
July 21, 2006 at 2:25 am
Hi Jesper,
I am in need of your help mate. Last time I asked for 2 seperate outputs for company & office. Now the client is asking for an output like...
July 20, 2006 at 3:28 am
Jesper,
Thats the exact output I want. Smashing stuff mate. Thank you very much.
Phani
February 2, 2006 at 2:17 am
Hi Jesper,
This is super stuff. Thanks a lot. Can you tell me how I can get the following output (without using any cursors)...
Your Solution
select off_name, usr_name,
sum(case when status = 'waiting'...
February 1, 2006 at 7:00 am
Add the WHERE Clause before Order By Clause. something like this....
SELECT DATE, ClassRoom, Status FROM first_table INNER JOIN class_table ON class_table.class_id=first_table.class_id WHERE ID>1 Order By ClassRoom
February 1, 2006 at 6:57 am
Hi Raj,
You can get the output in the following way......
SELECT DATE, ClassRoom, Status FROM first_table INNER JOIN class_table ON class_table.class_id=first_table.class_id Order By ClassRoom
Phani
February 1, 2006 at 5:33 am
Hi Jagan, you can either take Grasshopper's route or implement the following code to resolve the issue....
------------------------------------------------------
Declare @strSQL as varchar(100)
Set @strSQL='Declare @Out as Integer Select @Out = Count(*) from '...
August 20, 2004 at 4:41 am
Hi Marc,
You can use DataLength function to get the length of data stored in text fields.
Cheers...
Phani
April 28, 2004 at 5:53 am
SELECT without_a_column INTO xxx FROM Original_table;
DROP TABLE Original_table;
RENAME xxx TO Original_table;
Cheers......
March 11, 2004 at 3:04 am
Answer1.
If you are thinking of creating temp table in a stored proc, the best way is to create memory tables rather than temp tables. This is because, memtables give better performance...
March 11, 2004 at 2:56 am
Hi Frank,
Thanks very much for the information. Though it is a tedious task I have to do it at some point.
Cheers....
Phani
February 25, 2004 at 5:48 am
Hi David,
It worked and I am using xp_file now.
Thank you very much for your help.
Cheers....
Phani
September 24, 2003 at 2:01 am
Hi David,
I am using SQLServer2000 and therefore bit confused about the location of include files you mentioned.
Could you please give some more information?
Ta,
Phani
September 23, 2003 at 9:01 am
Viewing 15 posts - 1 through 15 (of 15 total)