Viewing 15 posts - 1 through 15 (of 30 total)
To see what is using the file
http://superuser.com/questions/117902/find-out-which-process-is-locking-a-file-or-folder-in-windows
To use a batch command to make a new copy of the file even if it is in use.
http://stackoverflow.com/questions/7647701/how-to-copy-in-use-files-through-batch-file-in-windows-7
May 26, 2016 at 9:25 am
Are you using switching?
http://www.cathrinewilhelmsen.net/2015/04/19/table-partitioning-in-sql-server-partition-switching/
May 17, 2016 at 9:33 am
I eventually found an easier and less complicated solution. I created a new column with int values (Y=1, N=0) and then did a straight forward measure on it. Works every...
May 1, 2015 at 8:41 am
If you are using a dataset to populate the Available values - just use the same dataset to also populate the default values. This causes every option to be ticked.
Just...
February 13, 2015 at 7:04 am
On the plus side, storing telephone number as int uses less storage than a varchar. Ok you won't need to use any numeric functions on it, but you probably won't...
January 31, 2015 at 2:36 am
Resolved - Added a new field in database with the count using Partition Over.
November 24, 2014 at 5:30 am
I had been using temp tables in a large import process and made the change to table variables and saw a big improvement in performance. However, the server was later...
June 8, 2012 at 3:49 am
DBCC CHECKDB REPAIR_ALLOW_DATA_LOSS
June 18, 2010 at 7:17 am
Mentioned in the other other posting you added to - if no SQL backups check for a software backup of the file system or a Windows Shadow copy backup. If...
June 17, 2010 at 9:49 am
Had same proble updating across a linked server.
A unique index did not work for me. I got it to work by:
Creating a temporary table in remote db then did a
...
March 26, 2010 at 9:09 am
Can you explain the benefit of this approach in comparison to using: ALTER INDEX REORGANIZE - which can be done online to a partitioned index?
March 12, 2010 at 4:48 am
The link below made me realise that we could improve on options of "create new table" / "select into" / "alter table". All of which involve writing a new table...
January 19, 2010 at 8:58 am
A few alternatives:
1. Rebuild SSIS jobs as DTS jobs.
2. Add the SQL Server 2000 server as a linked server on a SQL Server 2005 or later server. Then amend the...
January 19, 2010 at 3:38 am
Manually shrinking in the scenario you mention (full recovery mode with no tlog backup of any kind) will not remove data from the tlog nor allow it to be reduced...
January 18, 2010 at 2:48 am
Viewing 15 posts - 1 through 15 (of 30 total)