Viewing 15 posts - 76 through 90 (of 102 total)
Thanks, I had caught that one but forgot to mention it. It is one of the reasons I haven't applied SP4 yet.
December 29, 2005 at 10:02 am
An additional question for you THANG,
Did this bug also affect using Suser_sname() without a sid to get the name of the server login?
I am considering applying SP4, but I use...
December 29, 2005 at 9:47 am
Yes, I have had that problem. In fact Enterprise Manager will occasionally timeout and fail. I have to guess that it is contention and locking preventing the select.
I'll bet that...
December 29, 2005 at 8:32 am
I believe I once tried using DTS to do this and the results were terrible. Microsoft totally messed up the datatypes.
I have not tried the Migration Assistant.
One suggestion, if you...
December 23, 2005 at 7:50 am
Well I can't quote the books, but I just ran a test in SQL Server 2000 and I created a login t with both a password of t and an...
December 23, 2005 at 7:46 am
RESTORE DATABASE <Database> with recovery
This will do it.
December 23, 2005 at 7:44 am
First of all, make sure that you identify the City table as the parent key table if you are using enterprise manager, or alter the Title table to reference city...
December 20, 2005 at 9:13 am
Thanks for responding.
Actually it is a file transfer product. We tested it and while it can trigger a full backup remotely, the functionality apppears to be full backups only, there...
December 20, 2005 at 9:07 am
Couldn't you use the IF UPDATE (ColumnName) to determine if a column was updated?
I have never had a problem with that, but I haven't used it excessively.
December 16, 2005 at 10:07 am
SELECT db1.dbo.tblSalesOrderTrans.salesOrderId,
db2.dbo.tblProductMaster.productName
FROM db1.dbo.tblSalesOrderTrans INNER JOIN db2.dbo.tblProductMaster
ON db1.dbo.tblSalesOrderTrans.productId = db2.dbo.tblProductMaster.productId
Do you think it won't create any performance overhead ?
As long as they are on the same server. You should...
November 30, 2005 at 12:24 pm
In my company we ended up having to split one massive database into multiple customer databases and here is some experience.
Querying different databases on the same server, no performance hit. ...
November 30, 2005 at 8:30 am
I also remembered something I did yesterday that might indicate what we haven't considered.
I executed the query
SELECT 1
and it took 2 minutes 10 seconds to run.
November 30, 2005 at 8:17 am
Ed,
I agree it is a pain in the but as I deal with it daily.
The one thing you might be able to do, is shrink the data and log files...
November 30, 2005 at 7:17 am
The time thing is wierd. Try running the clustered index twice in a row. See if time drops off. Do this clearing things, and not clearing things.
In Query Analyzer on...
November 30, 2005 at 6:55 am
That's cool. I was really using the classic order problem as an example. That isn't what we do, I was using it to explore the general question will a unique...
November 30, 2005 at 6:26 am
Viewing 15 posts - 76 through 90 (of 102 total)