Viewing 15 posts - 436 through 450 (of 484 total)
Script should be approved next week. If you want it I can forward it to you
Simon Sabin
Co-author of SQL Server 2000 XML Distilled
October 16, 2002 at 4:25 pm
Or you could insert your data into a table variable, which has the identity column and return the data from that table, the example above will involve a nice table...
October 16, 2002 at 4:23 pm
Just gone through eactly the same process.
The quad processor server I looked at also had faster memory and subsystem.
I went for the dual processor option, and spent some of...
October 16, 2002 at 4:17 pm
Oh and set the recovery model to simple.
Simon Sabin
Co-author of SQL Server 2000 XML Distilled
October 16, 2002 at 4:10 pm
The problem with such an update is the log that has to be produced to ensure consistency, and the locks put in place to do the update.
Sugestions, put a...
October 16, 2002 at 4:07 pm
On the support issue, are you aware that if you have MSDN subscriptions you get 4 calls a year. may not sound much but in our dev team we have...
October 16, 2002 at 4:00 pm
You need to look at arithabort and arithignore
Simon Sabin
Co-author of SQL Server 2000 XML Distilled
October 16, 2002 at 9:14 am
No cos divide by zero is an error not a warning, warnings are like NULL eliminiated from aggregate
set ansi_warnings off
select sum(cast(null as int))
GO
set ansi_warnings on
select sum(cast(null as int))
Simon Sabin
Co-author of...
October 16, 2002 at 9:09 am
Are SQL Server and SQL Agent services running as domain users, its these domain accounts that you need to login in as. Minimum is SQL Agent running as domain account...
October 16, 2002 at 9:02 am
Hard to say with out seeing your code. You can copy millions of rows in seconds. Is your cpu, io, memory maxed out?
Simon Sabin
Co-author of SQL Server 2000 XML Distilled
October 16, 2002 at 8:44 am
Have do done step 4 for the account SQL server is running with?
Simon Sabin
Co-author of SQL Server 2000 XML Distilled
October 16, 2002 at 8:43 am
Infering from what ADO does, just create another parameter for the return but ensure you create it first, the name should be irelevant but sould be declare as a return...
October 16, 2002 at 8:24 am
Is replication involved, if they are using identity ranges, could something of gone screwy.
I am sure you are aware as well of bigint which is an 8byte integer. allowing some...
October 16, 2002 at 8:00 am
Textcopy is fully explained in BOL
this is from a batch file I have that is used to insert our default document template
textcopy /S%1 /D%2 /U%3 /P%4 /TdocumentTemplate /Cdocument /W"WHERE master...
October 16, 2002 at 7:35 am
Have you stopped it from being a publisher. If not you will still have the triggers on the tables.
Simon Sabin
Co-author of SQL Server 2000 XML Distilled
October 16, 2002 at 7:22 am
Viewing 15 posts - 436 through 450 (of 484 total)