Viewing 15 posts - 211 through 225 (of 920 total)
That would indicate that you used the name of the batch file with the -i parameter rather than the name of the file that had the 2 DBCC commands in...
October 16, 2012 at 1:49 pm
Yes, the server should be set to allow remote connections. The -E will work if the id of the login you are running is set up as a windows authenticated...
October 16, 2012 at 11:05 am
No, the .bat file should only have the SQLCMD line in it. The actual DBCC commands should be in another file indicated by the -i filename on the SQLCMD...
October 16, 2012 at 10:59 am
SQL Server is a service that runs like any other service under the OS. In order to issue commands or SQL statements to the server, you have to connect...
October 16, 2012 at 10:15 am
Look up SQLCMD, a utility that can run as a DOS command and read your script as input, connect to the SQL Server and execute your script.
Here's a link:
October 16, 2012 at 9:15 am
How are you executing this? DBCC is a command that SQL Server recognizes but the OS does not. You need to execute the DBCCs like you would execute...
October 15, 2012 at 3:44 pm
OK, that's a puzzler. I'm assuming that the log backup is in a script or a maintenance plan. What else is this process tring to do and in...
October 8, 2012 at 2:05 pm
I have a suspicion that the log backup isn't the process that's causing the log to be full. Can you check the server error log to see if that...
October 8, 2012 at 1:38 pm
What is the exact error message you are getting?
Why are you shrinking the logs with every backup?
October 8, 2012 at 12:24 pm
Yes, you should use convert to display the data. Data is held in a date column in an internal format that supports the ability to display the data in...
October 4, 2012 at 4:49 pm
Get the execution plans (actual) for the 2 procs. The plans should be different and will probably give a clue as to how the server is deciding to attack...
October 3, 2012 at 4:53 pm
You have to remember that your "column headings" aren't really headings, they're data values in columns in the unioned result. Columns can only have one data type, so you...
October 3, 2012 at 1:01 pm
I would second Craig's concerns. We haven't really gotten a clear picture from the OP as to how any duplicates in the child tables relate to the duplicates in...
September 28, 2012 at 12:30 pm
It would help if you posted the DDL for the main table and at least one of the tables linked to it. The generic solution would be to find...
September 27, 2012 at 1:38 pm
If you haven't explicitly limited SQL Server's memory allocation, it will take all it can getand keep it until it is forced to release it. Databases are supposed to...
September 26, 2012 at 3:35 pm
Viewing 15 posts - 211 through 225 (of 920 total)