Sign Up |  Live StatsLive Stats    Articles 35,345| Comments 159,791| Members 17,820, Newest waheguruhelpme| Online 194
Home Contact
 (Forgotten?): 
    Sikhism

   
                                                                     Your Banner Here!    

Need Help and advice

Our Donation Goal : Why Donate? : Donate Today! : Donate Anonymously (ਗੁਪਤ) : Our Family of Supporters
Goal this month: 400 USD, Received: 35 USD (9%)
Please Donate...
Related Topics...
Thread Thread Starter Forum Replies Last Post
I need advice/help lost Sikh Youth 3 24-Nov-2010 08:07 AM
Advice to yourself? Navdeep88 Sikh Youth 5 12-Feb-2010 08:38 AM
Need Advice (Re: Being alone) versus Interfaith Dialogues 3 20-Jul-2006 13:23 PM
Take the Guru's advice ! Soul_jyot Interfaith Dialogues 0 13-Sep-2005 19:21 PM


Tags
help, advice
Reply Post New Topic In This Forum Stay Connected to Sikhism, Click Here to Register Now!
  #1 (permalink)  
Old 01-Nov-2005, 13:40 PM
LHEMA's Avatar LHEMA
Guest
 
Posts: n/a
   
   
Need Help and advice

  Donate Today!   Email to Friend  Tell a Friend   Show Printable Version  Print   Contact sikhphilosophy.net Administraion for any Suggestions, Ideas, Feedback.  Feedback  

Register to Remove Advertisements
I am trying to create a database for our Safety department. In the database I
need the employee name, address, DOB, Department they are in and Jobtitle,
Date of incident, time of incident, type of injury. place of incidnet,
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/information-technology/6250-need-help-and-advice.html
summary of incident. Now I have and idea of how I want the design to be laid
out but my problem was given to me the other day I need to display somewhere
in the form or report the total of incidents that has happen and how many
types of incident, for example Bob had 3 accident but 2 where lower back pain
how can I get the database to identify the 2 lower back pain and then the
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6250
total that Bob has had. I hope I was clear with what I want, if anyone have
an idea it would be greatly appreciate. Thanks
--
Sheri



 
Do share your immediate thoughts or reactions on this issue? We value your views! Login Now! or Sign Up Today! to share your views with us.. Gurfateh!
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 01-Nov-2005, 13:40 PM
Al Camp's Avatar Al Camp
Guest
 
Posts: n/a
   
   
Re: Need Help and advice

LHEMA,
Your accidents should be in a subform, related to Employee in a One to
Many relationship. One employee, Many accidents... potentially.

In the subform table, you'll need a field like Injury that allows you to
select from a list of "preset" injury values.
ex. Head Injury, Laceration, Lower Back Pain, Shoulder... etc...

Then, in a report, you can Count the number of injuries against each
Employee, or against the whole Department. The injury values are preset so
that all Lower Back injury entries are exactly identical. Only then can
they be properly counted.
--
hth
Al Camp
Candia Computer Consulting - Candia NH
http://home.comcast.net/~cccsolutions


"LHEMA" wrote in message
news6101016-D136-4BE5-9D08-39A0FF5E561F@microsoft.com...
>I am trying to create a database for our Safety department. In the database
>I
> need the employee name, address, DOB, Department they are in and Jobtitle,
> Date of incident, time of incident, type of injury. place of incidnet,
> summary of incident. Now I have and idea of how I want the design to be
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6250
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6250
> laid
> out but my problem was given to me the other day I need to display
> somewhere
> in the form or report the total of incidents that has happen and how many
> types of incident, for example Bob had 3 accident but 2 where lower back
> pain
> how can I get the database to identify the 2 lower back pain and then the
> total that Bob has had. I hope I was clear with what I want, if anyone
> have
> an idea it would be greatly appreciate. Thanks
> --
> Sheri



Reply With Quote
  #3 (permalink)  
Old 01-Nov-2005, 13:40 PM
Brendan Reynolds's Avatar Brendan Reynolds
Guest
 
Posts: n/a
   
   
Re: Need Help and advice

Assuming a table 'Accidents' with fields 'AccidentID' (PK), 'EmployeeID' and
'AccidentType', the following query would give the number of each type of
accident per employee ...

SELECT Accidents.EmployeeID, Accidents.AccidentType,
Count(Accidents.AccidentID) AS CountOfAccidentID
FROM Accidents
GROUP BY Accidents.EmployeeID, Accidents.AccidentType;

In a report based on this query, you would set up a group level on
EmployeeID, and in the group footer an expression such as
=Sum(CountOfAccidentID) would give the total number of accidents of all
types per employee. An identical expression in the report footer would give
the total number of accidents for all employees.

http://www.databaseanswers.com/data_models/index.htm
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6250

--
Brendan Reynolds

"LHEMA" wrote in message
news6101016-D136-4BE5-9D08-39A0FF5E561F@microsoft.com...
>I am trying to create a database for our Safety department. In the database
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6250
>I
> need the employee name, address, DOB, Department they are in and Jobtitle,
> Date of incident, time of incident, type of injury. place of incidnet,
> summary of incident. Now I have and idea of how I want the design to be
> laid
> out but my problem was given to me the other day I need to display
> somewhere
> in the form or report the total of incidents that has happen and how many
> types of incident, for example Bob had 3 accident but 2 where lower back
> pain
> how can I get the database to identify the 2 lower back pain and then the
> total that Bob has had. I hope I was clear with what I want, if anyone
> have
> an idea it would be greatly appreciate. Thanks
> --
> Sheri



Reply With Quote
  #4 (permalink)  
Old 01-Nov-2005, 13:40 PM
LHEMA's Avatar LHEMA
Guest
 
Posts: n/a
   
   
Re: Need Help and advice

Thanks for the information, using subforms you create them with the table, is
it similar to vaule list or the lookup
Sheri


"Al Camp" wrote:

> LHEMA,
> Your accidents should be in a subform, related to Employee in a One to
> Many relationship. One employee, Many accidents... potentially.
>
> In the subform table, you'll need a field like Injury that allows you to
> select from a list of "preset" injury values.
> ex. Head Injury, Laceration, Lower Back Pain, Shoulder... etc...
>
> Then, in a report, you can Count the number of injuries against each
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6250
> Employee, or against the whole Department. The injury values are preset so
> that all Lower Back injury entries are exactly identical. Only then can
> they be properly counted.
> --
> hth
> Al Camp
> Candia Computer Consulting - Candia NH
> http://home.comcast.net/~cccsolutions
>
>
> "LHEMA" wrote in message
> news6101016-D136-4BE5-9D08-39A0FF5E561F@microsoft.com...
> >I am trying to create a database for our Safety department. In the database
> >I
> > need the employee name, address, DOB, Department they are in and Jobtitle,
> > Date of incident, time of incident, type of injury. place of incidnet,
> > summary of incident. Now I have and idea of how I want the design to be
> > laid
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6250
> > out but my problem was given to me the other day I need to display
> > somewhere
> > in the form or report the total of incidents that has happen and how many
> > types of incident, for example Bob had 3 accident but 2 where lower back
> > pain
> > how can I get the database to identify the 2 lower back pain and then the
> > total that Bob has had. I hope I was clear with what I want, if anyone
> > have
> > an idea it would be greatly appreciate. Thanks
> > --
> > Sheri

>
>
>

Reply With Quote
  #5 (permalink)  
Old 01-Nov-2005, 13:40 PM
LHEMA's Avatar LHEMA
Guest
 
Posts: n/a
   
   
Re: Need Help and advice

Thanks, will it also give me the total for individual employees and their
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6250
department
--
Sheri


"Brendan Reynolds" wrote:

> Assuming a table 'Accidents' with fields 'AccidentID' (PK), 'EmployeeID' and
> 'AccidentType', the following query would give the number of each type of
> accident per employee ...
>
> SELECT Accidents.EmployeeID, Accidents.AccidentType,
> Count(Accidents.AccidentID) AS CountOfAccidentID
> FROM Accidents
> GROUP BY Accidents.EmployeeID, Accidents.AccidentType;
>
> In a report based on this query, you would set up a group level on
> EmployeeID, and in the group footer an expression such as
> =Sum(CountOfAccidentID) would give the total number of accidents of all
> types per employee. An identical expression in the report footer would give
> the total number of accidents for all employees.
>
> http://www.databaseanswers.com/data_models/index.htm
>
> --
> Brendan Reynolds
>
> "LHEMA" wrote in message
> news6101016-D136-4BE5-9D08-39A0FF5E561F@microsoft.com...
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6250
> >I am trying to create a database for our Safety department. In the database
> >I
> > need the employee name, address, DOB, Department they are in and Jobtitle,
> > Date of incident, time of incident, type of injury. place of incidnet,
> > summary of incident. Now I have and idea of how I want the design to be
> > laid
> > out but my problem was given to me the other day I need to display
> > somewhere
> > in the form or report the total of incidents that has happen and how many
> > types of incident, for example Bob had 3 accident but 2 where lower back
> > pain
> > how can I get the database to identify the 2 lower back pain and then the
> > total that Bob has had. I hope I was clear with what I want, if anyone
> > have
> > an idea it would be greatly appreciate. Thanks
> > --
> > Sheri

>
>
>

Reply With Quote
  #6 (permalink)  
Old 01-Nov-2005, 13:40 PM
Brendan Reynolds's Avatar Brendan Reynolds
Guest
 
Posts: n/a
   
   
Re: Need Help and advice

The technique can be adapted to slice and dice your data pretty much any way
you want. This is the kind of thing Access was designed for, and it does it
very well.

I forgot to explain why I included that link in my previous post. It's a
link to a web page that provides examples of designs for databases, and the
very first item in the list is an 'Accidents at Work' database. It's not
complete, but it is well worth a look.

--
Brendan Reynolds


"LHEMA" wrote in message
news:BDADEE44-1AE9-4A2B-A484-8936FE852547@microsoft.com...
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6250
> Thanks, will it also give me the total for individual employees and their
> department
> --
> Sheri
>
>
> "Brendan Reynolds" wrote:
>
>> Assuming a table 'Accidents' with fields 'AccidentID' (PK), 'EmployeeID'
>> and
>> 'AccidentType', the following query would give the number of each type of
>> accident per employee ...
>>
>> SELECT Accidents.EmployeeID, Accidents.AccidentType,
>> Count(Accidents.AccidentID) AS CountOfAccidentID
>> FROM Accidents
>> GROUP BY Accidents.EmployeeID, Accidents.AccidentType;
>>
>> In a report based on this query, you would set up a group level on
>> EmployeeID, and in the group footer an expression such as
>> =Sum(CountOfAccidentID) would give the total number of accidents of all
>> types per employee. An identical expression in the report footer would
>> give
>> the total number of accidents for all employees.
>>
>> http://www.databaseanswers.com/data_models/index.htm
>>
>> --
>> Brendan Reynolds
>>
>> "LHEMA" wrote in message
>> news6101016-D136-4BE5-9D08-39A0FF5E561F@microsoft.com...
>> >I am trying to create a database for our Safety department. In the
>> >database
>> >I
>> > need the employee name, address, DOB, Department they are in and
>> > Jobtitle,
>> > Date of incident, time of incident, type of injury. place of incidnet,
>> > summary of incident. Now I have and idea of how I want the design to be
>> > laid
>> > out but my problem was given to me the other day I need to display
>> > somewhere
>> > in the form or report the total of incidents that has happen and how
>> > many
>> > types of incident, for example Bob had 3 accident but 2 where lower
>> > back
>> > pain
>> > how can I get the database to identify the 2 lower back pain and then
>> > the
>> > total that Bob has had. I hope I was clear with what I want, if anyone
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6250
>> > have
>> > an idea it would be greatly appreciate. Thanks
>> > --
>> > Sheri

>>
>>
>>



Reply With Quote
  #7 (permalink)  
Old 01-Nov-2005, 13:40 PM
Al Camp's Avatar Al Camp
Guest
 
Posts: n/a
   
   
Re: Need Help and advice

LHEMA,
I think Brendan and I are both just trying to get good table/s and a form
set up, and from there you can easily adapt to those "special needs" you
might have... whether on the form or subsequent reports.
Try getting the tables and form set up and working... just to collect
accident data properly for each employee, and come on back if you still want
help with the "finishing touches."
Good luck...
--
hth
Al Camp
Candia Computer Consulting - Candia NH
http://home.comcast.net/~cccsolutions


"LHEMA" wrote in message
news:BDADEE44-1AE9-4A2B-A484-8936FE852547@microsoft.com...
> Thanks, will it also give me the total for individual employees and their
> department
> --
> Sheri
>
>
> "Brendan Reynolds" wrote:
>
>> Assuming a table 'Accidents' with fields 'AccidentID' (PK), 'EmployeeID'
>> and
>> 'AccidentType', the following query would give the number of each type of
>> accident per employee ...
>>
>> SELECT Accidents.EmployeeID, Accidents.AccidentType,
>> Count(Accidents.AccidentID) AS CountOfAccidentID
>> FROM Accidents
>> GROUP BY Accidents.EmployeeID, Accidents.AccidentType;
>>
>> In a report based on this query, you would set up a group level on
>> EmployeeID, and in the group footer an expression such as
>> =Sum(CountOfAccidentID) would give the total number of accidents of all
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6250
>> types per employee. An identical expression in the report footer would
>> give
>> the total number of accidents for all employees.
>>
>> http://www.databaseanswers.com/data_models/index.htm
>>
>> --
>> Brendan Reynolds
>>
>> "LHEMA" wrote in message
>> news6101016-D136-4BE5-9D08-39A0FF5E561F@microsoft.com...
>> >I am trying to create a database for our Safety department. In the
>> >database
>> >I
>> > need the employee name, address, DOB, Department they are in and
>> > Jobtitle,
>> > Date of incident, time of incident, type of injury. place of incidnet,
>> > summary of incident. Now I have and idea of how I want the design to be
>> > laid
>> > out but my problem was given to me the other day I need to display
>> > somewhere
>> > in the form or report the total of incidents that has happen and how
>> > many
>> > types of incident, for example Bob had 3 accident but 2 where lower
>> > back
>> > pain
>> > how can I get the database to identify the 2 lower back pain and then
>> > the
>> > total that Bob has had. I hope I was clear with what I want, if anyone
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6250
>> > have
>> > an idea it would be greatly appreciate. Thanks
>> > --
>> > Sheri

>>
>>
>>



Reply With Quote
  #8 (permalink)  
Old 02-Nov-2005, 11:47 AM
Brendan Reynolds's Avatar Brendan Reynolds
Guest
 
Posts: n/a
   
   
Re: Need Help and advice


Precisely. Given a good, appropriately normalised database design, the
grouping and counting will not be a problem. The model at the URL I posted
provides a basis for such a database design.

--
Brendan Reynolds

"Al Camp" wrote in message
news:%23DfdRcp3FHA.2364@TK2MSFTNGP12.phx.gbl...
> LHEMA,
> I think Brendan and I are both just trying to get good table/s and a
> form set up, and from there you can easily adapt to those "special needs"
> you might have... whether on the form or subsequent reports.
> Try getting the tables and form set up and working... just to collect
> accident data properly for each employee, and come on back if you still
> want help with the "finishing touches."
> Good luck...
> --
> hth
> Al Camp
> Candia Computer Consulting - Candia NH
> http://home.comcast.net/~cccsolutions
>
>
> "LHEMA" wrote in message
> news:BDADEE44-1AE9-4A2B-A484-8936FE852547@microsoft.com...
>> Thanks, will it also give me the total for individual employees and their
>> department
>> --
>> Sheri
>>
>>
>> "Brendan Reynolds" wrote:
>>
>>> Assuming a table 'Accidents' with fields 'AccidentID' (PK), 'EmployeeID'
>>> and
>>> 'AccidentType', the following query would give the number of each type
>>> of
>>> accident per employee ...
>>>
>>> SELECT Accidents.EmployeeID, Accidents.AccidentType,
>>> Count(Accidents.AccidentID) AS CountOfAccidentID
>>> FROM Accidents
>>> GROUP BY Accidents.EmployeeID, Accidents.AccidentType;
>>>
>>> In a report based on this query, you would set up a group level on
>>> EmployeeID, and in the group footer an expression such as
>>> =Sum(CountOfAccidentID) would give the total number of accidents of all
>>> types per employee. An identical expression in the report footer would
>>> give
>>> the total number of accidents for all employees.
>>>
>>> http://www.databaseanswers.com/data_models/index.htm
>>>
>>> --
>>> Brendan Reynolds
>>>
>>> "LHEMA" wrote in message
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6250
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6250
>>> news6101016-D136-4BE5-9D08-39A0FF5E561F@microsoft.com...
>>> >I am trying to create a database for our Safety department. In the
>>> >database
>>> >I
>>> > need the employee name, address, DOB, Department they are in and
>>> > Jobtitle,
>>> > Date of incident, time of incident, type of injury. place of incidnet,
>>> > summary of incident. Now I have and idea of how I want the design to
>>> > be
>>> > laid
>>> > out but my problem was given to me the other day I need to display
>>> > somewhere
>>> > in the form or report the total of incidents that has happen and how
>>> > many
>>> > types of incident, for example Bob had 3 accident but 2 where lower
>>> > back
>>> > pain
>>> > how can I get the database to identify the 2 lower back pain and then
>>> > the
>>> > total that Bob has had. I hope I was clear with what I want, if anyone
>>> > have
>>> > an idea it would be greatly appreciate. Thanks
>>> > --
>>> > Sheri
>>>
>>>
>>>

>
>



Reply With Quote
  #9 (permalink)  
Old 03-Nov-2005, 11:35 AM
LHEMA's Avatar LHEMA
Guest
 
Posts: n/a
   
   
Re: Need Help and advice

  Donate Today!  
Thank you both, you have really help me design my database, I appreciate all
the help. Just to make sure that I am on the right page I have create 2
tables one for Employees and the other for Injuries, do I need another table
to count the total of injuries per employee

Thanks Sheri


"Brendan Reynolds" wrote:

>
> Precisely. Given a good, appropriately normalised database design, the
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6250
> grouping and counting will not be a problem. The model at the URL I posted
> provides a basis for such a database design.
>
> --
> Brendan Reynolds
>
> "Al Camp" wrote in message
> news:%23DfdRcp3FHA.2364@TK2MSFTNGP12.phx.gbl...
> > LHEMA,
> > I think Brendan and I are both just trying to get good table/s and a
> > form set up, and from there you can easily adapt to those "special needs"
> > you might have... whether on the form or subsequent reports.
> > Try getting the tables and form set up and working... just to collect
> > accident data properly for each employee, and come on back if you still
> > want help with the "finishing touches."
> > Good luck...
> > --
> > hth
> > Al Camp
> > Candia Computer Consulting - Candia NH
> > http://home.comcast.net/~cccsolutions
> >
> >
> > "LHEMA" wrote in message
> > news:BDADEE44-1AE9-4A2B-A484-8936FE852547@microsoft.com...
> >> Thanks, will it also give me the total for individual employees and their
> >> department
> >> --
> >> Sheri
> >>
> >>
> >> "Brendan Reynolds" wrote:
> >>
> >>> Assuming a table 'Accidents' with fields 'AccidentID' (PK), 'EmployeeID'
> >>> and
> >>> 'AccidentType', the following query would give the number of each type
> >>> of
> >>> accident per employee ...
> >>>
> >>> SELECT Accidents.EmployeeID, Accidents.AccidentType,
> >>> Count(Accidents.AccidentID) AS CountOfAccidentID
> >>> FROM Accidents
> >>> GROUP BY Accidents.EmployeeID, Accidents.AccidentType;
> >>>
> >>> In a report based on this query, you would set up a group level on
> >>> EmployeeID, and in the group footer an expression such as
> >>> =Sum(CountOfAccidentID) would give the total number of accidents of all
> >>> types per employee. An identical expression in the report footer would
> >>> give
> >>> the total number of accidents for all employees.
> >>>
> >>> http://www.databaseanswers.com/data_models/index.htm
> >>>
> >>> --
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=6250
> >>> Brendan Reynolds
> >>>
> >>> "LHEMA" wrote in message
> >>> news6101016-D136-4BE5-9D08-39A0FF5E561F@microsoft.com...
> >>> >I am trying to create a database for our Safety department. In the
> >>> >database
> >>> >I
> >>> > need the employee name, address, DOB, Department they are in and
> >>> > Jobtitle,
> >>> > Date of incident, time of incident, type of injury. place of incidnet,
> >>> > summary of incident. Now I have and idea of how I want the design to
> >>> > be
> >>> > laid
> >>> > out but my problem was given to me the other day I need to display
> >>> > somewhere
> >>> > in the form or report the total of incidents that has happen and how
> >>> > many
> >>> > types of incident, for example Bob had 3 accident but 2 where lower
> >>> > back
> >>> > pain
> >>> > how can I get the database to identify the 2 lower back pain and then
> >>> > the
> >>> > total that Bob has had. I hope I was clear with what I want, if anyone
> >>> > have
> >>> > an idea it would be greatly appreciate. Thanks
> >>> > --
> >>> > Sheri
> >>>
> >>>
> >>>

> >
> >

>
>
>

Reply With Quote
   Click Here to Donate Now!

Support Us!
Become a Promoter!
Gurfateh ji, you can become a SPN Promoter by Donating as little as $10 each month. With limited resources & high operational costs, your donations make it possible for us to deliver a quality website and spread the teachings of the Sri Guru Granth Sahib Ji, to serve & uplift humanity. Every contribution counts. Donate Generously. Gurfateh!
ReplyPost New Topic In This Forum Stay Connected to Sikhism, Click Here to Register Now!

Bookmarks


(View-All Members who have read this thread : 0
There are no names to display.

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Tools Search
Search:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On
Trackbacks are On
Pingbacks are On
Refbacks are On

» Gurbani Jukebox
Listen to Gurbani while surfing SPN!
» Active Discussions
sikhism need urgent advice.......
Today 10:03 AM
7 Replies, 87 Views
sikhism Who is "Mohan"?
Today 08:46 AM
22 Replies, 348 Views
sikhism How important is Matha...
Today 08:12 AM
59 Replies, 1,041 Views
sikhism ਨਾਮਾ
Today 06:37 AM
2 Replies, 53 Views
sikhism Sikh Diamonds Video...
Today 04:23 AM
6 Replies, 120 Views
sikhism Are Creator and Creation...
Today 01:30 AM
44 Replies, 2,837 Views
sikhism Herman Hesse,...
Today 00:54 AM
13 Replies, 230 Views
sikhism On a Scale of Most...
Yesterday 21:42 PM
30 Replies, 1,277 Views
sikhism I became victim by...
Yesterday 19:50 PM
0 Replies, 46 Views
sikhism Sikh Books downloads
Yesterday 15:39 PM
2 Replies, 66 Views
sikhism Salok Sheikh Farid ji...
Yesterday 09:35 AM
0 Replies, 47 Views
sikhism In Punjab, three farmers...
Yesterday 05:36 AM
0 Replies, 49 Views
sikhism Supernatural Sikhs, what...
Yesterday 03:45 AM
19 Replies, 416 Views
sikhism Sukhmani Sahib Astpadi...
26-May-2012 22:57 PM
0 Replies, 51 Views
Do You Think You Are...
26-May-2012 09:59 AM
94 Replies, 8,258 Views
» Books You Should Read...
Powered by vBadvanced CMPS v3.2.2

All times are GMT +6.5. The time now is 10:21 AM.
Powered by vBulletin® Version 3.8.6
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.5.2 Copyright © 2004-12, All Rights Reserved. Sikh Philosophy Network


Page generated in 0.62578 seconds with 30 queries