Viewing 15 posts - 3,751 through 3,765 (of 5,356 total)
October 15, 2003 at 7:02 am
October 15, 2003 at 6:53 am
quote:
I have also worked with people who have an inflated view of either their job or the money they should make. I...
October 15, 2003 at 4:02 am
Reminds me of an old Judas Priest song (if I remember right) ![]()
'Never satisfied'
Now, what I really wants to know is who are those 21 blessed individuals...
October 15, 2003 at 3:37 am
quote:
Matthias could you please give more details of using Access or give a sample of VB code.
October 15, 2003 at 3:05 am
quote:
There is an application built in java env and it has a SQL query in it. The back-end here is DB2. Below...
October 15, 2003 at 2:42 am
quote:
We've considered at times branching out a little, but our core competency is SQL so we've been sticking to what we know/do....
October 15, 2003 at 2:09 am
Hi,
some points in here http://www.sqlservercentral.com/forum/topic.asp?TOPIC_ID=17226 might be of interest to you.
In short, there is no ordering in a table.
However, you can use a clustered index to store in a...
October 15, 2003 at 1:57 am
quote:
As you know when you show the properties of a database from withinEnterprise Manager one of the values its shows is...
October 15, 2003 at 1:48 am
Hi there,
I thought I'd throw in some oil in the fire and post a reply from the great Joe Celko on the MS newsgroups that (might) say it all. Anyway,...
October 15, 2003 at 1:00 am
To piggy-back on Guarddata normally I would say keep it in one table, dessign and index it properly and you'll be fine.
But without knowing what kind of application (maybe...
October 15, 2003 at 12:56 am
A basic script could look like this
SET NOCOUNT ON
USE Northwind
GO
DECLARE @newname VARCHAR(50)
SET @newname = CAST(DATEPART(yyyy,GETDATE()) AS CHAR(4))
EXEC sp_rename 'customers',@newname
GO
SELECT * FROM [2003]
EXEC sp_rename '2003', 'customers'
SELECT *...
October 14, 2003 at 8:28 am
October 14, 2003 at 7:56 am
Hi vangogh,
you might want to look at this one.
http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=633&lngWId=5
Haven't tried it though, because I think this is more presentational stuff of the application
Frank
October 14, 2003 at 7:54 am
Writing the script shouldn't be difficult, but as Ray mentioned, the even better question is why? ![]()
Frank
October 14, 2003 at 6:43 am
Viewing 15 posts - 3,751 through 3,765 (of 5,356 total)