Viewing 15 posts - 331 through 345 (of 920 total)
It's more likely to be a permissions issue. The service account that SQL Server is running under has to have permissions to read the file. Find out from...
June 5, 2012 at 12:46 pm
How about:
bcp Testdb2.dbo.Activity in "C:\Documents and Settings\..\..\\Activity.xls" -c -t, -S Servername -T
June 5, 2012 at 9:33 am
If I recall correctly, index 0 is the heap in a table with no clustered index. So it looks like the data pages are messed up. Still, getting...
June 1, 2012 at 1:29 pm
I'm not sure this is fixable. Do you have a good backup? Can you BCP the data out (I'm guessing not)?
June 1, 2012 at 12:47 pm
how about:
delete sop10200 where sopnumbe = 'XXX1234' and (dex_row_id >= 001
...
June 1, 2012 at 11:30 am
What,exactly, are you trying to repair? Did DBCC return an error on an index? If so, could you please post the error returned. That will help the...
June 1, 2012 at 9:27 am
Is there a trigger on the table? Posting the table DLL and the code you were running might help.
May 31, 2012 at 12:28 pm
Merge as in "Structures are the same and the data needs to be combined" or "structures are different and objects need to all be in a common database"?
If the former,...
May 30, 2012 at 5:35 pm
Thanks, Gail. I learn something new every time I visit.
May 30, 2012 at 5:29 pm
And sometimes, it depends...
For #1 (where is are the latest database changes recorded and what would you do to preserve that particular piece of disk?)
For #2, it depends. The...
May 30, 2012 at 2:54 pm
Invention can be the Mother of Necessity. Someone invented a plug-n electric car. Now we need charging stations all over the country. Someone invented shared networks, and...
May 30, 2012 at 12:38 pm
Do you build the BCP command line in sql, or are all the values always the same. If they remain constant, then invoking bcp from a step in a...
May 25, 2012 at 4:24 pm
What's the reason this needs to be xp_cmdshell rather than just an invocation of BCP from the sql agent job via command line? If there is work to be...
May 25, 2012 at 1:14 pm
If the SQL Server is running, those files will probably be useless in a restore. You can back up SQL Server files when the server is not running, but...
May 24, 2012 at 10:30 am
Doing O/S type backups of database files while SQL Server is running will not work. If you want to use Netbackup to back up your SQL Servers, you need...
May 24, 2012 at 10:00 am
Viewing 15 posts - 331 through 345 (of 920 total)