Viewing 12 posts - 16 through 27 (of 27 total)
Yes, you can safely delete these files. I would setup, if you do not have one already, a Job that will run periodically and auto-remove the old backups you...
October 18, 2010 at 1:37 pm
The short answer is that in Simple Mode, you cannot recover this space unless you use the Shinkfile command. All the simple recovery mode does is reuse the space...
October 18, 2010 at 1:32 pm
If your program is complaining that the DB is in use, that is so because the SQL Server tells it it is. So, use the SQL Server Tools to find...
October 18, 2010 at 12:36 pm
Because a cursor is an actual object inside the database engine, there is a little overhead involved in creating the cursor and destroying it. Also, a majority of cursor operations...
October 18, 2010 at 12:08 pm
There are numerous ways you could do this, DMV's, build your own Proc, etc., but below I listed two queries that you can run to get a start on...
October 18, 2010 at 10:45 am
You should look into using Joins on the multiple tables. The purpose of a Join is to combine query results from two or more related tables into one logical...
October 18, 2010 at 10:22 am
You need to use the '@' symbol to declare the variable you are passing in, then use it again when using that variable in the actual function. Try...
October 18, 2010 at 10:08 am
Table fragmentation can occur when modifying data with INSERT, UPDATE, or DELETE statements, which over time cause gaps in each page. If a query search is based on a table...
October 15, 2010 at 2:13 pm
Changing the column type as you indicated should not produce any issues, so long as the data currently there fits into the new datatype.
Whenever you alter the structure of a...
October 15, 2010 at 1:55 pm
Something to keep in mind for those currently using 2008 or moving to it:
Using SET ROWCOUNT will not affect DELETE, INSERT, and UPDATE statements in SQL Server 2008. Avoid using...
October 15, 2010 at 12:55 pm
You can try this at least to see who has access to what database, and with what permissions.
IF EXISTS ( SELECT *
...
October 15, 2010 at 8:49 am
Viewing 12 posts - 16 through 27 (of 27 total)