1e2d9 Northwind as an example
Sign Up |  Live StatsLive Stats    Articles 37,330| Comments 177,232| Members 19,409, Newest tanu sandhu| Online 504
Home Contact
 (Forgotten?): 
    A portrait by Bhagat Singh of Sikhiart.com
    For best SPN experience, use Firefox Internet Browser!


                                                                   Your Banner Here!    




Click Here to Register/Sign Up Daily Hukamnama Member Blogs Downloads Website Navigation Help Fonts Tags

Northwind as an example

Our Donation Goal : Why Donate? : Donate Today! : Donate Anonymously (ਗੁਪਤ) : Our Family of Supporters
Goal this month: 500 USD, Received: 115 USD (23%)
Please Donate...
     
Related Topics...
Thread Thread Starter Forum Replies Last Post
A2K- "floating" form similar to Northwind splash screen, i.e., as an info box? StargateFan Information Technology 1 28-Jul-2006 08:29 AM
Northwind database - Customer Phone list Ed Information Technology 1 28-Jul-2006 08:12 AM
re: Northwind Mystery Nugimac Information Technology 10 28-Jul-2006 08:04 AM
Northwind Mystery Tom Ellison Information Technology 20 28-Jul-2006 08:03 AM
Northwind DB instructions Bob Richardson Information Technology 1 11-Nov-2005 20:08 PM


Tags
northwind, example
Reply Post New Topic In This Forum Stay Connected to Sikhism, Click Here to Register Now!
  #1 (permalink)  
Old 28-Jul-2006, 08:03 AM
Tom Ellison's Avatar Tom Ellison
Guest
 
Posts: n/a
   
   
Northwind as an example

  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
Dear friends:

The Northwind database is a useful example of a database. It seems
sometimes to be an example of how NOT to do things, but that wouldn't be the
impression a beginning programmer might get. Perhaps you won't agree with
this, but that's the purpose of this post.

In this database, there are autonumber values as identity keys to Employees
and Orders that perform, effectively, as the Employee Number and the Order
Number. I would not consider this to be a preferred practice.

In a practical sense, this can cause problems.

Consider a business where there are several locations. At each location,
there are sales being made. Allow that some of these locations do not have
computers connected to the network. They must take orders and submit them
(by fax or mail perhaps). They would very probably have pre-numbered order
pads, with order numbers. These could be printed by the "main office" and
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/information-technology/9547-northwind-as-an-example.html
sent out. Thus, each sub office has an assigned sequence of order numbers.

Or, any salesman in the field would be taking orders on his order pad.

Barring some error in printing, these hand written orders would have an
Order Number assigned from the time they are hand written. As written,
Northwind doesn't permit such practice.

I'm preparing a set of Northwind back-end variants, both with and without
autonumber primary keys. I am strongly considering having an entered
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=9547
OrderNumber and EmployeeNumber column in them. I'd like to do a
sufficiently good job that these variants could become examples much like
the existing Northwind has been, but demonstrating different approaches that
can be used. My hope is to have these be an excellent display of good
practices, so when I see something in the existing Northwind I do not like,
I'd like to bring it here for comments. Any alternatives that seem proper
may become part of one of these variants, so I'd appreciate your input.

Thanks, everyone.

Tom Ellison






Got anything to share on This Topic? Why not share your immediate thoughts/reaction with us! Login Now! or Sign Up Today! to share your views... Gurfateh!
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 28-Jul-2006, 08:03 AM
Douglas J. Steele's Avatar Douglas J. Steele
Guest
 
Posts: n/a
   
   
Re: Northwind as an example

I don't want to come across as argumentative, Tom, but the example you give
is one of the least grievous sins in Northwind. For the specific complaint
you have, the appropriate thing would be to use replication, which forces
the Autonumbers to be Random (thus significantly reducing the possibility of
collision).

A far worse sin is their use of Lookup fields.

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no private e-mails, please)


"Tom Ellison" wrote in message
news:%23p9UMffdGHA.1204@TK2MSFTNGP02.phx.gbl...
> Dear friends:
>
> The Northwind database is a useful example of a database. It seems
> sometimes to be an example of how NOT to do things, but that wouldn't be
> the impression a beginning programmer might get. Perhaps you won't agree
> with this, but that's the purpose of this post.
>
> In this database, there are autonumber values as identity keys to
> Employees and Orders that perform, effectively, as the Employee Number and
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=9547
> the Order Number. I would not consider this to be a preferred practice.
>
> In a practical sense, this can cause problems.
>
> Consider a business where there are several locations. At each location,
> there are sales being made. Allow that some of these locations do not
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=9547
> have computers connected to the network. They must take orders and submit
> them (by fax or mail perhaps). They would very probably have pre-numbered
> order pads, with order numbers. These could be printed by the "main
> office" and sent out. Thus, each sub office has an assigned sequence of
> order numbers.
>
> Or, any salesman in the field would be taking orders on his order pad.
>
> Barring some error in printing, these hand written orders would have an
> Order Number assigned from the time they are hand written. As written,
> Northwind doesn't permit such practice.
>
> I'm preparing a set of Northwind back-end variants, both with and without
> autonumber primary keys. I am strongly considering having an entered
> OrderNumber and EmployeeNumber column in them. I'd like to do a
> sufficiently good job that these variants could become examples much like
> the existing Northwind has been, but demonstrating different approaches
> that can be used. My hope is to have these be an excellent display of
> good practices, so when I see something in the existing Northwind I do not
> like, I'd like to bring it here for comments. Any alternatives that seem
> proper may become part of one of these variants, so I'd appreciate your
> input.
>
> Thanks, everyone.
>
> Tom Ellison
>
>



Reply With Quote
  #3 (permalink)  
Old 28-Jul-2006, 08:03 AM
Tom Ellison's Avatar Tom Ellison
Guest
 
Posts: n/a
   
   
Re: Northwind as an example

Dear Doug:

While I'm not unaware of the nasty Lookups, they aren't a target of what I'm
trying to do. By the way, Lookups are a natural result of using surrogate
identities which you wish to hide.

No argument with anything you say. In a recent post (mine on Northwind
yesterday) Albert was discussing how the sequentially assigned autonumber
keys are useful when the PK is on the autonumber. You've just shot a
considerable hole in that one!

Thanks very much. I don't find anything argumentative in what you say.
Actually, I find what you say here to be supportive of what I'm concluding
from my studies. I'm not going to draw any final conclusions until the full
testing rig is built and some empirical, replicable results can be provided.

Tom Ellison


"Douglas J. Steele" wrote in message
news:uAOm8AgdGHA.4912@TK2MSFTNGP05.phx.gbl...
>I don't want to come across as argumentative, Tom, but the example you give
>is one of the least grievous sins in Northwind. For the specific complaint
>you have, the appropriate thing would be to use replication, which forces
>the Autonumbers to be Random (thus significantly reducing the possibility
>of collision).
>
> A far worse sin is their use of Lookup fields.
>
> --
> Doug Steele, Microsoft Access MVP
> http://I.Am/DougSteele
> (no private e-mails, please)
>
>
> "Tom Ellison" wrote in message
> news:%23p9UMffdGHA.1204@TK2MSFTNGP02.phx.gbl...
>> Dear friends:
>>
>> The Northwind database is a useful example of a database. It seems
>> sometimes to be an example of how NOT to do things, but that wouldn't be
>> the impression a beginning programmer might get. Perhaps you won't agree
>> with this, but that's the purpose of this post.
>>
>> In this database, there are autonumber values as identity keys to
>> Employees and Orders that perform, effectively, as the Employee Number
>> and the Order Number. I would not consider this to be a preferred
>> practice.
>>
>> In a practical sense, this can cause problems.
>>
>> Consider a business where there are several locations. At each location,
>> there are sales being made. Allow that some of these locations do not
>> have computers connected to the network. They must take orders and
>> submit them (by fax or mail perhaps). They would very probably have
>> pre-numbered order pads, with order numbers. These could be printed by
>> the "main office" and sent out. Thus, each sub office has an assigned
>> sequence of order numbers.
>>
>> Or, any salesman in the field would be taking orders on his order pad.
>>
>> Barring some error in printing, these hand written orders would have an
>> Order Number assigned from the time they are hand written. As written,
>> Northwind doesn't permit such practice.
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=9547
>>
>> I'm preparing a set of Northwind back-end variants, both with and without
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=9547
>> autonumber primary keys. I am strongly considering having an entered
>> OrderNumber and EmployeeNumber column in them. I'd like to do a
>> sufficiently good job that these variants could become examples much like
>> the existing Northwind has been, but demonstrating different approaches
>> that can be used. My hope is to have these be an excellent display of
>> good practices, so when I see something in the existing Northwind I do
>> not like, I'd like to bring it here for comments. Any alternatives that
>> seem proper may become part of one of these variants, so I'd appreciate
>> your input.
>>
>> Thanks, everyone.
>>
>> Tom Ellison
>>
>>

>
>



Reply With Quote
  #4 (permalink)  
Old 28-Jul-2006, 08:03 AM
Fred Boer's Avatar Fred Boer
Guest
 
Posts: n/a
   
   
Re: Northwind as an example

Dear Tom:

While you are at it, could you make yours a bit more attractive as well?
Some of those Northwind form backgrounds are ugly enough to curdle milk!

Cheers!
Fred Boer

"Tom Ellison" wrote in message
news:%23p9UMffdGHA.1204@TK2MSFTNGP02.phx.gbl...
> Dear friends:
>
> The Northwind database is a useful example of a database. It seems
> sometimes to be an example of how NOT to do things, but that wouldn't be

the
> impression a beginning programmer might get. Perhaps you won't agree with
> this, but that's the purpose of this post.
>
> In this database, there are autonumber values as identity keys to

Employees
> and Orders that perform, effectively, as the Employee Number and the Order
> Number. I would not consider this to be a preferred practice.
>
> In a practical sense, this can cause problems.
>
> Consider a business where there are several locations. At each location,
> there are sales being made. Allow that some of these locations do not

have
> computers connected to the network. They must take orders and submit them
> (by fax or mail perhaps). They would very probably have pre-numbered

Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=9547
order
> pads, with order numbers. These could be printed by the "main office" and
> sent out. Thus, each sub office has an assigned sequence of order

numbers.
>
> Or, any salesman in the field would be taking orders on his order pad.
>
> Barring some error in printing, these hand written orders would have an
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=9547
> Order Number assigned from the time they are hand written. As written,
> Northwind doesn't permit such practice.
>
> I'm preparing a set of Northwind back-end variants, both with and without
> autonumber primary keys. I am strongly considering having an entered
> OrderNumber and EmployeeNumber column in them. I'd like to do a
> sufficiently good job that these variants could become examples much like
> the existing Northwind has been, but demonstrating different approaches

that
> can be used. My hope is to have these be an excellent display of good
> practices, so when I see something in the existing Northwind I do not

like,
> I'd like to bring it here for comments. Any alternatives that seem proper
> may become part of one of these variants, so I'd appreciate your input.
>
> Thanks, everyone.
>
> Tom Ellison
>
>



Reply With Quote
  #5 (permalink)  
Old 28-Jul-2006, 08:03 AM
Tom Ellison's Avatar Tom Ellison
Guest
 
Posts: n/a
   
   
Re: Northwind as an example

Dear Fred:

At this point, I've split the tables, indexes, and relationships into a
separate back end. I'm not really dealing with the front end. But it's not
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=9547
a bad idea!

Tom Ellison


"Fred Boer" wrote in message
news:uqOxsQgdGHA.4108@TK2MSFTNGP03.phx.gbl...
> Dear Tom:
>
> While you are at it, could you make yours a bit more attractive as well?
> Some of those Northwind form backgrounds are ugly enough to curdle milk!
>
>
> Cheers!
> Fred Boer
>
> "Tom Ellison" wrote in message
> news:%23p9UMffdGHA.1204@TK2MSFTNGP02.phx.gbl...
>> Dear friends:
>>
>> The Northwind database is a useful example of a database. It seems
>> sometimes to be an example of how NOT to do things, but that wouldn't be

> the
>> impression a beginning programmer might get. Perhaps you won't agree
>> with
>> this, but that's the purpose of this post.
>>
>> In this database, there are autonumber values as identity keys to

> Employees
>> and Orders that perform, effectively, as the Employee Number and the
>> Order
>> Number. I would not consider this to be a preferred practice.
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=9547
>>
>> In a practical sense, this can cause problems.
>>
>> Consider a business where there are several locations. At each location,
>> there are sales being made. Allow that some of these locations do not

> have
>> computers connected to the network. They must take orders and submit
>> them
>> (by fax or mail perhaps). They would very probably have pre-numbered

> order
>> pads, with order numbers. These could be printed by the "main office"
>> and
>> sent out. Thus, each sub office has an assigned sequence of order

> numbers.
>>
>> Or, any salesman in the field would be taking orders on his order pad.
>>
>> Barring some error in printing, these hand written orders would have an
>> Order Number assigned from the time they are hand written. As written,
>> Northwind doesn't permit such practice.
>>
>> I'm preparing a set of Northwind back-end variants, both with and without
>> autonumber primary keys. I am strongly considering having an entered
>> OrderNumber and EmployeeNumber column in them. I'd like to do a
>> sufficiently good job that these variants could become examples much like
>> the existing Northwind has been, but demonstrating different approaches

> that
>> can be used. My hope is to have these be an excellent display of good
>> practices, so when I see something in the existing Northwind I do not

> like,
>> I'd like to bring it here for comments. Any alternatives that seem
>> proper
>> may become part of one of these variants, so I'd appreciate your input.
>>
>> Thanks, everyone.
>>
>> Tom Ellison
>>
>>

>
>



Reply With Quote
  #6 (permalink)  
Old 28-Jul-2006, 08:03 AM
Peter Hibbs's Avatar Peter Hibbs
Guest
 
Posts: n/a
   
   
RE: Northwind as an example

Hi Tom

I notice in Northwind that there are several tables linked using AutoNumber
fields. I have found from bitter experience that this is NOT a good idea when
trying to import data from an external source into such tables. The presence
of linked tables using AutoNumber fields makes it very difficult to import
data easily. I always use another type of field to link tables.
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=9547

Also all Text fields have their Allow Zero Length property set to No (the
default). I always set this property to Yes. When importing data into a
table using a query or the TransferText command, if this property is set to
No and the incoming text field is NULL the imported record is just ignored
with no warning or indication that it has failed.

Also I would set the Field Size of all text fields to 255 as this can cause
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=9547
obscure problems for beginners when users say they cannot enter enough
characters into a field. Any limits are better done on the form.

Good Luck.
--
Peter Hibbs

Reply With Quote
  #7 (permalink)  
Old 28-Jul-2006, 08:03 AM
Tom Ellison's Avatar Tom Ellison
Guest
 
Posts: n/a
   
   
Re: Northwind as an example

Dear Peter:

Some very thoughtful comments. Thanks.

I will be building two version, with and without the autonumber columns, and
comparing their performance. Not for the same reasons you mention.

I have already paid some attention to setting the column properties
properly, especially the Allow Zero Length. I'll keep on that.

Having a long text size is not at all desirable if the column is to be
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=9547
indexed. The indexes would then be HUGE and slow. I also get concerned
that data may be entered or modified using the table datasheets or imports.
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=9547
Having columns over-long is very nasty on the screen and on reports. They
need to be limited.

Tom Ellison


"Peter Hibbs" wrote in message
news:15B5FFD8-7778-4854-A19E-DBFE387F025D@microsoft.com...
> Hi Tom
>
> I notice in Northwind that there are several tables linked using
> AutoNumber
> fields. I have found from bitter experience that this is NOT a good idea
> when
> trying to import data from an external source into such tables. The
> presence
> of linked tables using AutoNumber fields makes it very difficult to import
> data easily. I always use another type of field to link tables.
>
> Also all Text fields have their Allow Zero Length property set to No (the
> default). I always set this property to Yes. When importing data into a
> table using a query or the TransferText command, if this property is set
> to
> No and the incoming text field is NULL the imported record is just ignored
> with no warning or indication that it has failed.
>
> Also I would set the Field Size of all text fields to 255 as this can
> cause
> obscure problems for beginners when users say they cannot enter enough
> characters into a field. Any limits are better done on the form.
>
> Good Luck.
> --
> Peter Hibbs
>



Reply With Quote
  #8 (permalink)  
Old 28-Jul-2006, 08:03 AM
Douglas J. Steele's Avatar Douglas J. Steele
Guest
 
Posts: n/a
   
   
Re: Northwind as an example

Allow Zero Length isn't always desirable: I believe it can prevent having
Null values in the field.

Long text size doesn't always have a negative impact on indexing. Yes, if
they choose to have many long strings in the field, it will cause the index
to be very large, but just a field that allows 255 characters vs. a field
that only allows 50 characters should make no difference to the index if all
of the fields fit within the 50 characters.

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no private e-mails, please)


"Tom Ellison" wrote in message
news:e$WHX1gdGHA.5016@TK2MSFTNGP04.phx.gbl...
> Dear Peter:
>
> Some very thoughtful comments. Thanks.
>
> I will be building two version, with and without the autonumber columns,
> and comparing their performance. Not for the same reasons you mention.
>
> I have already paid some attention to setting the column properties
> properly, especially the Allow Zero Length. I'll keep on that.
>
> Having a long text size is not at all desirable if the column is to be
> indexed. The indexes would then be HUGE and slow. I also get concerned
> that data may be entered or modified using the table datasheets or
> imports. Having columns over-long is very nasty on the screen and on
> reports. They need to be limited.
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=9547
>
> Tom Ellison
>
>
> "Peter Hibbs" wrote in message
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=9547
> news:15B5FFD8-7778-4854-A19E-DBFE387F025D@microsoft.com...
>> Hi Tom
>>
>> I notice in Northwind that there are several tables linked using
>> AutoNumber
>> fields. I have found from bitter experience that this is NOT a good idea
>> when
>> trying to import data from an external source into such tables. The
>> presence
>> of linked tables using AutoNumber fields makes it very difficult to
>> import
>> data easily. I always use another type of field to link tables.
>>
>> Also all Text fields have their Allow Zero Length property set to No (the
>> default). I always set this property to Yes. When importing data into a
>> table using a query or the TransferText command, if this property is set
>> to
>> No and the incoming text field is NULL the imported record is just
>> ignored
>> with no warning or indication that it has failed.
>>
>> Also I would set the Field Size of all text fields to 255 as this can
>> cause
>> obscure problems for beginners when users say they cannot enter enough
>> characters into a field. Any limits are better done on the form.
>>
>> Good Luck.
>> --
>> Peter Hibbs
>>

>
>



Reply With Quote
  #9 (permalink)  
Old 28-Jul-2006, 08:03 AM
Tom Ellison's Avatar Tom Ellison
Guest
 
Posts: n/a
   
   
Re: Northwind as an example

  Donate Today!  
Dear Douglas:

While it is true that the data in the table is stored as variable length
strings in separate segments, it was not may impression that this was the
case for indexes. Can you definitely confirm this for indexes?

Having built an ISAM database engine myself, this does not seem likely to
me. The index entries in each node of a btree are usually of fixed length
with the actual values stored (and sorted) directly in the nodes. Having
these be linked to variable length strings in other segments, as the are for
the data, would be quite a challenge in building an index.

I'll make a point of testing this to see. It would be quite unexpected, but
it's probably possible. Not a good thing for index performance though, I'd
think.

Tom Ellison


"Douglas J. Steele" wrote in message
news:egtmjThdGHA.5116@TK2MSFTNGP02.phx.gbl...
> Allow Zero Length isn't always desirable: I believe it can prevent having
> Null values in the field.
>
> Long text size doesn't always have a negative impact on indexing. Yes, if
> they choose to have many long strings in the field, it will cause the
> index to be very large, but just a field that allows 255 characters vs. a
> field that only allows 50 characters should make no difference to the
> index if all of the fields fit within the 50 characters.
>
> --
> Doug Steele, Microsoft Access MVP
> http://I.Am/DougSteele
> (no private e-mails, please)
>
>
> "Tom Ellison" wrote in message
> news:e$WHX1gdGHA.5016@TK2MSFTNGP04.phx.gbl...
>> Dear Peter:
>>
>> Some very thoughtful comments. Thanks.
>>
>> I will be building two version, with and without the autonumber columns,
>> and comparing their performance. Not for the same reasons you mention.
>>
>> I have already paid some attention to setting the column properties
>> properly, especially the Allow Zero Length. I'll keep on that.
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=9547
>>
>> Having a long text size is not at all desirable if the column is to be
>> indexed. The indexes would then be HUGE and slow. I also get concerned
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=9547
>> that data may be entered or modified using the table datasheets or
>> imports. Having columns over-long is very nasty on the screen and on
>> reports. They need to be limited.
>>
>> Tom Ellison
>>
>>
>> "Peter Hibbs" wrote in message
>> news:15B5FFD8-7778-4854-A19E-DBFE387F025D@microsoft.com...
>>> Hi Tom
>>>
>>> I notice in Northwind that there are several tables linked using
>>> AutoNumber
>>> fields. I have found from bitter experience that this is NOT a good idea
>>> when
>>> trying to import data from an external source into such tables. The
>>> presence
>>> of linked tables using AutoNumber fields makes it very difficult to
>>> import
>>> data easily. I always use another type of field to link tables.
>>>
>>> Also all Text fields have their Allow Zero Length property set to No
>>> (the
>>> default). I always set this property to Yes. When importing data into a
>>> table using a query or the TransferText command, if this property is set
>>> to
>>> No and the incoming text field is NULL the imported record is just
>>> ignored
>>> with no warning or indication that it has failed.
>>>
>>> Also I would set the Field Size of all text fields to 255 as this can
>>> cause
>>> obscure problems for beginners when users say they cannot enter enough
>>> characters into a field. Any limits are better done on the form.
>>>
>>> Good Luck.
>>> --
>>> Peter Hibbs
>>>

>>
>>

>
>



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

» Active Discussions
Man Driving Without...
Today 00:28 AM
3 Replies, 70 Views
Do you believe in...
Today 00:25 AM
192 Replies, 4,006 Views
Keeping Amrit Vela
Yesterday 23:38 PM
10 Replies, 850 Views
How does Sikhi help you...
Yesterday 22:54 PM
22 Replies, 875 Views
Losing My Religion: Why...
Yesterday 22:18 PM
12 Replies, 278 Views
Request for assistance...
Yesterday 21:53 PM
5 Replies, 48 Views
Panjabi
By Ishna
Yesterday 17:56 PM
12 Replies, 260 Views
Parkash Guru Amar Das ji...
Yesterday 17:07 PM
3 Replies, 33 Views
Serious challenges to...
Yesterday 16:49 PM
0 Replies, 66 Views
Sikh man fights for his...
Yesterday 16:46 PM
0 Replies, 62 Views
Sikhs Rights Group to...
Yesterday 16:44 PM
0 Replies, 39 Views
Haryana Sikh body bans...
Yesterday 16:39 PM
0 Replies, 42 Views
Health Exercise And...
Yesterday 13:30 PM
0 Replies, 55 Views
SSGS with English...
Yesterday 12:55 PM
9 Replies, 120 Views
Rozana Reports (ਪੰਜਾਬੀ...
Yesterday 01:44 AM
310 Replies, 7,560 Views
» Books You Should Read...
Powered by vBadvanced CMPS v3.2.3
All times are GMT +6.5. The time now is 01:15 AM.
Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2013, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2 Copyright © 2004-12, All Rights Reserved. Sikh Philosophy Network


Page generated in 0.65226 seconds with 32 queries
0