Click here to Skip to main content
15,906,947 members
Home / Discussions / Database
   

Database

 
AnswerRe: List products sold to buyers Pin
_Damian S_17-Feb-10 17:32
professional_Damian S_17-Feb-10 17:32 
GeneralRe: List products sold to buyers Pin
freshonlineMax18-Feb-10 9:38
freshonlineMax18-Feb-10 9:38 
GeneralRe: List products sold to buyers Pin
_Damian S_18-Feb-10 11:59
professional_Damian S_18-Feb-10 11:59 
GeneralRe: List products sold to buyers without repeating buyers name Pin
freshonlineMax18-Feb-10 19:11
freshonlineMax18-Feb-10 19:11 
Questionsql statement to find missing records Pin
johnnysmith117-Feb-10 16:25
johnnysmith117-Feb-10 16:25 
AnswerRe: sql statement to find missing records Pin
_Damian S_17-Feb-10 17:29
professional_Damian S_17-Feb-10 17:29 
GeneralRe: sql statement to find missing records Pin
johnnysmith117-Feb-10 21:11
johnnysmith117-Feb-10 21:11 
GeneralGrouping Related Stored Procedures Pin
AspDotNetDev17-Feb-10 12:55
protectorAspDotNetDev17-Feb-10 12:55 
I work with a database (SQL Server 2000) with thousands of stored procedures. In order to group them so that they are easier to manage, we have made use of numbered stored procedure groups (e.g., "SomeSPGroup;1", "SomeSPGroup;2", and so on). That's better than nothing, but still it's not so great. We have one SP group with hundreds of SP's in it. What I would really like is some way to group them into a namespace and nest further namespaces in that namespace. I can sort of do this now by naming them with dot notation, but then it becomes somewhat clumsy to use them. For example, you have to type out the full name and SQL Server Management Studio provides no recognition that these SP's are related, so they are all just listed next to the other SP's in the tree view, rather than giving them their own node that can be expanded. For example, I could name two SP's like so:
[OrderProcessing.CreateOrder]
[OrderProcessing.DeleteOrder]

Whenever I want to execute those, I have to use the full names:
EXEC [OrderProcessing.CreateOrder] @param1, @param2

And the list of SP's in SSMS shows them side by side with other SP's, like this:
...
MakeShipment
[OrderProcessing.CreateOrder]
[OrderProcessing.DeleteOrder]
ProcessPayment
...

What I would like to see is a hierarchy:
...
MakeShipment
-OrderProcessing    <-- This node can expand and collapse.
    CreateOrder
    DeleteOrder
ProcessPayment
...

I suppose I could create my own tool or perhaps make a plugin that will do this for me, but there is still no support for namespaces in the actual SQL code (i.e., I have to use the whole name when executing it).

What I would like to hear is any thoughts you have on this. Do you know of any database provider that currently has a concept of namespaces? Have you header of Microsoft planning support for this in a future version of SQL Server? Does it already exist in SQL Server and I've just missed it somehow? Do you have alternative methods for managing large groups of stored procedures (and, no, prefixes are not an appealing option to me)?
GeneralRe: Grouping Related Stored Procedures Pin
Not Active17-Feb-10 14:22
mentorNot Active17-Feb-10 14:22 
GeneralRe: Grouping Related Stored Procedures Pin
AspDotNetDev17-Feb-10 16:22
protectorAspDotNetDev17-Feb-10 16:22 
GeneralRe: Grouping Related Stored Procedures Pin
Mycroft Holmes17-Feb-10 17:08
professionalMycroft Holmes17-Feb-10 17:08 
Questionopen database Pin
mhh11217-Feb-10 11:26
mhh11217-Feb-10 11:26 
AnswerRe: open database Pin
Not Active17-Feb-10 11:53
mentorNot Active17-Feb-10 11:53 
GeneralRe: open database Pin
mhh1125-Mar-10 9:38
mhh1125-Mar-10 9:38 
GeneralRe: open database Pin
Not Active5-Mar-10 9:55
mentorNot Active5-Mar-10 9:55 
AnswerRe: open database Pin
Ashfield17-Feb-10 21:48
Ashfield17-Feb-10 21:48 
QuestionDate format in ACCESS database Pin
Johnkokk16-Feb-10 23:55
Johnkokk16-Feb-10 23:55 
AnswerRe: Date format in ACCESS database Pin
Eddy Vluggen17-Feb-10 0:13
professionalEddy Vluggen17-Feb-10 0:13 
GeneralRe: Date format in ACCESS database Pin
Luc Pattyn17-Feb-10 0:32
sitebuilderLuc Pattyn17-Feb-10 0:32 
GeneralRe: Date format in ACCESS database Pin
Eddy Vluggen17-Feb-10 0:52
professionalEddy Vluggen17-Feb-10 0:52 
GeneralRe: Date format in ACCESS database Pin
Luc Pattyn17-Feb-10 1:00
sitebuilderLuc Pattyn17-Feb-10 1:00 
GeneralRe: Date format in ACCESS database Pin
Johnkokk17-Feb-10 0:33
Johnkokk17-Feb-10 0:33 
AnswerRe: Date format in ACCESS database Pin
thatraja17-Feb-10 0:15
professionalthatraja17-Feb-10 0:15 
GeneralRe: Date format in ACCESS database Pin
Johnkokk17-Feb-10 0:40
Johnkokk17-Feb-10 0:40 
AnswerRe: Date format in ACCESS database Pin
Luc Pattyn17-Feb-10 0:37
sitebuilderLuc Pattyn17-Feb-10 0:37 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.