Viewing 15 posts - 1,276 through 1,290 (of 1,412 total)
quote:
chrhedga 364
Cool. Now what?
--
Chris Hedgate @ Apptus Technologies...
October 29, 2002 at 1:18 am
A different approach using NEWID() is shown here (http://www.sql.nu/read.asp?id=4), and it works nice if you have a small table (like with 10 rows).
--
Chris Hedgate @ Apptus Technologies (http://www.apptus.se)
October 15, 2002 at 1:25 am
Well, not really. SQL Server can't be clustered to share the workload, so partitioning your tables is your best option.
--
Chris Hedgate @ Apptus Technologies (http://www.apptus.se)
October 14, 2002 at 5:45 am
Just noticed that you are using SQL7, and SCOPE_IDENTITY is new for SQL2K. As far as I know, in SQL7 there is no similar function, so you have to rethink...
October 14, 2002 at 2:58 am
@@identity returns the latest created identity value in any table, for the current user session. This means that if your procedure inserts a row into table A, and there is...
October 14, 2002 at 2:05 am
Probably the forum called 'In the enterprise' would be best for this discussion, but since the thread is already started here, what do you want to ask?
--
Chris Hedgate @ Apptus...
October 14, 2002 at 1:22 am
It sounds like there may be a trigger on the table that does an insert in another table, thereby upsetting the identity value. Checked that?
--
Chris Hedgate @ Apptus Technologies (
October 14, 2002 at 1:18 am
I think T-SQL will be enough if that's the way you want to go. Look at Oracle, most DBAs are still only using PL/SQL, even though it is possible to...
October 13, 2002 at 3:34 pm
Fully qualify the table names in the query (that is always a good thing to do):
use mydatabase
go
exec master.dbo.xp_sendmail @recipients = 'myself',
@query='select o.name,o.id,o.xtype,o.parent_obj,o.crdate,u.name createdBy
from yourDB.dbo.sysobjects o join yourDB.dbo.sysusers u ON o.uid=u.uid
where...
October 13, 2002 at 3:29 pm
One detail in the article that is worth mentioning though is #4d. This range partitioning is a great feature in Oracle, that I would love to see in SQL. Right...
October 11, 2002 at 2:47 am
Running XP Pro as well, domain user and no problems changing my password. Just to make sure, you aren't referring to servers running on your own computer and in your...
October 11, 2002 at 2:23 am
This article shows a couple of alternative ways to do it:
http://www.sql.nu/read.asp?id=7
--
Chris Hedgate @ Apptus Technologies (http://www.apptus.se)
October 11, 2002 at 2:18 am
quote:
But we are contractually obligated to not comingle client data -- so views are our only option
October 11, 2002 at 2:11 am
As you said, it looks much cleaner, and it is also the correct way of designed a normalized database.
--
Chris Hedgate @ Apptus Technologies (http://www.apptus.se)
October 11, 2002 at 1:58 am
I won't go into the details of this comparison, maybe I'll go along if someone says something interesting but otherwise I'll just say that you can find details of both...
October 10, 2002 at 8:15 am
Viewing 15 posts - 1,276 through 1,290 (of 1,412 total)