Viewing 15 posts - 91 through 105 (of 318 total)
If you did backup and restore instead of copy, you would not have this problem.
April 28, 2014 at 6:36 pm
As the error indicates, bcp cannot find the server in the server\instance string in the -S switch.
If the server is correct, I would wrap the string in double quoutes ("),...
April 28, 2014 at 3:51 pm
Is PurchaseOrderDetailID the clustered key?
If it is, is it necessary to have it in the include statement, since the clustered key is always a part of a non clustered index...
February 11, 2014 at 2:53 pm
Look at the job history.
Check what user executed the job step (likely whatever user that is running the SQL Agent Service)
make sure that user has the appropriate permissions.
February 3, 2014 at 10:44 am
You also need a strategy/process for syncing up database logins between the two sites.
And if you use SQL logins, then you need scripts/processes that sync up the database users associated...
January 31, 2014 at 3:37 pm
Create date/time of the physical file?
In Powershell:
$(get-childItem '<file_name_or_path>').CreationTime
January 16, 2014 at 12:32 pm
Any create or drop of an object should be in the default trace.
Do you have the default trace file(s) for the time in question?
Not sure if rename of an object...
January 15, 2014 at 5:03 pm
In both cases there is an earlier data modification within the transaction (X lock), then when the batches with the select try to get a shared lock on the resource,...
January 13, 2014 at 8:54 am
If either of these suspended sessions had an open transaction in tempdb (i.e. related to a temp table), then the tempdb log would continue to grow until these transactions were...
January 9, 2014 at 4:38 pm
What is the structure of the ENGINE_ENTITIES table?
What does the select look like?
January 8, 2014 at 9:03 am
What is holding exclusive locks on the table?
The selects are trying to bet a shared locks on the table but each session is holding earlier exclusive locks within the transaction.
January 8, 2014 at 9:02 am
Transaction count is 1 on both sessions. What else is happening inside these transactions?
is there an exclusive lock on some record(s) in the table that gets hit by the...
January 7, 2014 at 8:30 am
These instances may still be default instances, but not listening on the default port with SQL browser turned on.
That being said, in order to administer a SQL server instance you...
January 6, 2014 at 6:31 pm
Jeff, that is an awesome example of using format files with BCP in SQL server.
In the past I have only used bcp format files with Sybase BCP.
Another option is to...
January 3, 2014 at 11:25 am
What type of storage do you have?
Thin provisioning?
Did you see disk queues go up during these events?
Does it happen on the same days of week/time of day?
Any maintenance going on...
January 3, 2014 at 11:11 am
Viewing 15 posts - 91 through 105 (of 318 total)