Viewing 15 posts - 1 through 15 (of 23 total)
A "whole system" kindof question though:
Where should the data get decrypted? For SSN's I almost think it should not be decrypted, but the user input should be encrypting and the...
July 21, 2005 at 9:50 am
Question my dad asked:
So where is Booganville?
I replied -- no such place, only to be presented with a globe...
Look around New Guinea...
Higlight for the answer...
April 4, 2005 at 1:38 pm
Question: Referential Integrity?
When you have these cross-database (and linked servers, etc), how do you maintain referential integrity?
eg, bbdpres: |
We have an environment for reporting here that needs to use dynamic... |
March 10, 2005 at 11:30 am
>Wouldn't having the "code more organized" remove most of your naming conflicts?
>I would think the downside of having everything in one database is a lot smaller when you consider...
March 4, 2005 at 7:09 am
I'm not sure what the problem was, but we solved it by changing the login from "Use connection's credentials" to "Use No Credentials". I'm still fuzzy about why an excel...
March 1, 2005 at 2:49 pm
Why not use NT Authentication?
That would let you use all the current enterprise tools for maintaining and controlling passwords (such as expiration, min length, etc).
Yes, you need to manage the...
February 17, 2005 at 8:50 am
I agree that this is pretty nifty; I use a similar getup for generating reports using SQLMail. That said, I've found some problems using the idea:
February 17, 2005 at 7:55 am
About primary keys:
Are they still a good idea no matter how complex they become or how irrelevant they are?
Example: I have this calculation table (when used with joins and group...
December 17, 2004 at 7:56 am
But beware the lurking exception:
If you feed it '1,2,abc,5', the code will fail. Much better than injection, but make sure the code will not cause damage if you feed it...
December 2, 2004 at 11:39 am
Thank you very much; every day I find I know very little about sql (Mainly a C/C++ dude).
Hey RonKyle, could you post an example of the join that you're talking...
July 26, 2004 at 11:57 am
I like RonKyle's solution -- its one I haven't seen before.
But why not a query like this:
select * from customers where
((@countryOP='bg' AND country like @country+'%') or
(@countryOP='eq' AND country = @country)...
July 26, 2004 at 8:06 am
I read a column about this type of thing where it was called a "Worst Practice". THe issue with calling an outside program from a trigger is that if...
March 4, 2004 at 8:29 am
I like hashtables (and use them when I need quick 1-1 lookups), but for UI elements or other sequential-access type things, why not just keep the dataset/datatable around as long...
February 25, 2004 at 8:04 am
[From the article]
Which rolls back your update. Which may result in an error to your users or worse, removing a bunch of data they updated and not correctly telling them...
February 24, 2004 at 12:53 pm
Ok. I think I muddled through it. This doesn't sound optimal, or nice, but it works.
I was trying to do exec @result = sp_executesql N'exec xp_cmdshell ''dir'''
But that would always return 0...
February 24, 2004 at 12:01 pm
Viewing 15 posts - 1 through 15 (of 23 total)