Viewing 15 posts - 61 through 75 (of 99 total)
Could you please to specified the error message?
September 19, 2005 at 1:41 am
You must check your server name before create the publication, please check with @@SERVERNAME, the server name must be in the list.
If the server name not in the list, you...
September 18, 2005 at 10:05 pm
Yes, the xls file must in the server, if the xls location in the local machine, of course, you must create script to uploaded xls file to the web server.
September 15, 2005 at 10:23 pm
1. select * into TableB From TableA
2.
For all of them:
ALTER TABLE tablename
DISABLE TRIGGER ALL
For a specific trigger:
ALTER TABLE tablename
DISABLE TRIGGER triggername
September 15, 2005 at 8:39 pm
Change the database option to truncate log file on checkpoint
September 15, 2005 at 3:24 am
You just restore database with recovery option, but make sure all backup has been restore to that database.
September 15, 2005 at 3:21 am
Please see this :
http://www.sqlservercentral.com/scripts/contributions/1092.asp
September 15, 2005 at 12:52 am
Yes, because the query statement doesn't need to wait until the user release the record from the locking process.
For example :
TableA has a 100 records, record number 40 has...
September 15, 2005 at 12:41 am
Delete one of your log file, so after that you can dettach and attach again your database with only one log file
September 14, 2005 at 3:52 am
If you just want to query the data in the table, try to add "NOLOCK" option in your query statement, because with this statement if someone lock that record the...
September 13, 2005 at 9:36 pm
Like you sad before, the tape drive it's a good choice, but try to split the tape by year or month, because it will help you, in case you need...
September 13, 2005 at 5:14 am
I think you need to split the database into a couple database or into 2 database, because like you say, you don't need the data readily available.
You can create a...
September 13, 2005 at 4:46 am
I think you must detach your database, after that delete the log file and then attach the database. (This way will create a new log file)
September 13, 2005 at 1:47 am
I think you must detach your database, after that delete the log file and then attach the database. (This way will create a new log file)
September 13, 2005 at 1:46 am
Viewing 15 posts - 61 through 75 (of 99 total)