Viewing 15 posts - 196 through 210 (of 291 total)
Well I assume by the output that you are doing this through an external application, not Enterprise Manager or Query Analyzer. My first suggestion is to run the sp_attach_db command...
May 25, 2007 at 11:37 am
What are you connecting with? Query Analyzer, Enterprise Manager, Other Application with ODBC, etc? What protocols (TCP, Named Pipes, etc) are you using on the server?
James.
May 25, 2007 at 11:23 am
"The problem occurs because Microsoft Distributed Transaction Coordinator (MS DTC) is not configured for network access. By default, the network access settings of MS DTC are disabled on new installations...
May 25, 2007 at 8:37 am
I'm not seeing the bit map you posted. Try just copying the text error message and posting that.
May 25, 2007 at 7:51 am
They are not a replacement for ZIP Codes. FIPS (Federal Information Processing Standards) are US Government standards for specific types of data and data processing. Codes from this standard (
May 25, 2007 at 7:30 am
Actually truncate table is logged, it just the deallocation of the pages that are logged rather than each row, and that can be undone within a transaction.
If you try the...
May 25, 2007 at 7:15 am
This depends on the table design (i.e. foreign keys, etc) but I would (first backup the database) copy the 100K records into a new table:
select * into #t1 from yourtable...
May 24, 2007 at 7:10 am
What, if any, error message do you get? Exactly how are you trying to move the databases, what command is failing. Post the actual command that is failing (include all...
May 24, 2007 at 6:49 am
Ok, I readjusted my original code to use UPDATETEXT you should be able to take it from there.
While I don't understand all your requirements (obviously) this seems like a...
May 23, 2007 at 9:40 am
What is the constraint? (constraint fk_constrname foreign key (colname) references parenttablename (colname) [on update cascade] [on delete cascade]
If you don't have a constraint then its only an implied foreign key...
May 21, 2007 at 9:52 am
The alternatives to "Cascade Delete" is to manually delete the child record(s) before deleting the parent. I often use this in Data Warehouses when I want to insure the person...
May 21, 2007 at 9:33 am
Not sure I'm following exactly what you want to do, but it sounds like you could still use the code I posted earlier. Inside the While loop, just before the...
May 21, 2007 at 7:41 am
Phil is correct, be careful what you delete, just because it's not being used now doesn't mean there isn't an appliction out there depending on it. It's a real bummer...
May 21, 2007 at 7:34 am
Hmm, are we still working the same inventory problem? Post the DDL (definition) for the FactInventoryTrx table, and your DateTime table, along with some test data (three or four records)...
May 21, 2007 at 7:31 am
--See if you can use the following example code to accomplish what you want
--If the "replace" command doesn't work in your circumstances then substitue
--your UPDATETEXT command INSIDE the loop. Your...
May 18, 2007 at 2:00 pm
Viewing 15 posts - 196 through 210 (of 291 total)