Viewing 15 posts - 3,196 through 3,210 (of 3,615 total)
The trick is to sort the wheat from the chaff!
I've lost count of the number of technologies/technology companies that were going to be the next big thing, but after a flurry...
May 26, 2004 at 9:23 am
It is not really clear from your code what you are trying to do.
The settings of your SQL Server will affect how NULL values are interpretted so be careful, otherwise...
May 26, 2004 at 2:09 am
IF isnumeric(@s)= 1 AND PATINDEX('%[A-Z]%',@s)=0
PRINT 'All Number'
ELSE
PRINT 'NOT All Number'
This is a weird one. At first I thought it was interpretting your value as a hexadecimal number but SET...
May 26, 2004 at 2:02 am
Sorry, I forgot to add. Splitting the table into more than one by columns is vertical partitioning.
If your users tend to search for last months transactions then I would consider...
May 21, 2004 at 2:06 pm
I had this problem where I had to get transactions from 15 countries on a monthly basis.
My solution, pre-analysis services was to create specific summary tables that pre-aggregated the data.
For...
May 21, 2004 at 2:02 pm
Personally I couldn't give a damn about the "don't use capitals" issue.
For the pedants out there I do understand about case sensitivity.
What I care about is whether or not there...
May 21, 2004 at 8:34 am
It could have been nasty and obviously the exec wanted him skinned alive.
Fortunately IT manager took the view that he should be the one to discipline his own staff so...
May 21, 2004 at 6:58 am
SOUNDEX on SQL Server is too limiting.
You need an equivalent that takes into account more letters so that you can tune your dedupe process.
You also need to be able to...
May 21, 2004 at 1:44 am
In other words learn to be a development DBA.
One thing I have learnt in my career is that "in the land of the blind the one eyed man is king". ...
May 21, 2004 at 1:32 am
Really, this is a case of the road to hell being paved with good intentions. You can see the spirit of what the IT Director wanted to do its just...
May 21, 2004 at 1:22 am
Yes, I know what MODEL is for, its just that it has been hammered into me since SQL6.5 that the MASTER is and always should be sacrosanct.
Robert did bring up...
May 20, 2004 at 7:50 am
Presumably you have an ordering sequence?
Without details of your table structure the only way that I can think of doing it is by using a cursor, however I would tend...
May 20, 2004 at 1:48 am
Has Scott Adams drawn a picture of your IT director by any chance?
I was told by an old sergeant that when officers gives a stupid order you follow that order...
May 20, 2004 at 1:42 am
There is an old SQL6.5 trick that still works.
sp_addalias <login>,'dbo'
If you run that in your database then your developer login will be the dbo and therefore all objects created in...
May 20, 2004 at 1:33 am
Let us suppose that your procedure inserts records into a customer table, and order table and an order item table.
You could have a single procedure to do this, but there...
May 20, 2004 at 1:21 am
Viewing 15 posts - 3,196 through 3,210 (of 3,615 total)