Viewing 15 posts - 2,656 through 2,670 (of 6,679 total)
Set the max memory for that instance of SQL Server to a reasonable amount. On a system with 4GB of memory where the server is dedicated to SQL Server...
May 13, 2014 at 11:30 am
Unless you have a problem with the network between those servers - it could be much easier to just restore across the network.
RESTORE DATABASE {...}
FROM...
March 25, 2014 at 12:34 pm
praneethydba (3/6/2014)
I am going through the link. now today suddenly it went to 25%, I checked the event logs and sql logs. nothing was there to my notice.
I...
March 6, 2014 at 2:09 pm
Are you on 2008 or 2008 R2? If 2008 R2 you should be using the native compression - which on a 500GB database could get you down to less...
March 6, 2014 at 2:04 pm
sqlmunkee (2/4/2014)
February 5, 2014 at 11:52 am
Remove the Distinct in the view definition - that is going to eliminate rows from the grouping that are actually included in the procedure.
The distinct will only occur after the...
January 31, 2014 at 2:21 pm
For user databases - I would use ALTER DATABASE ... MODIFY FILE () to change the file locations, then take the database offline - copy the files to new location...
January 21, 2014 at 3:42 pm
Task Manager does a really poor job of displaying memory usage - especially for SQL Server. To view memory usage for SQL Server it is better to use perfmon...
January 14, 2014 at 3:28 pm
below86 (1/13/2014)
Almost ever query we write will span more than one database, so that's why I prefer it.:-)
If your system consists of multiple databases - and there is never the...
January 14, 2014 at 12:27 pm
JohnFTamburo (1/7/2014)
mbrady (1/7/2014)
EncounterId is not unique as there can be several charges against a single encounter.
Is there any identity that is unique? You could cluster on a non-unique ID...
January 7, 2014 at 1:51 pm
You could also look at using SSIS instead - which would give you the options on the OLEDB Destination to set a commit size and batch size.
January 7, 2014 at 12:22 pm
Maintenance plans store the history in a different location - to view that history you need to right-click on the maintenance plan and select view history. Viewing the agent...
January 7, 2014 at 11:49 am
defyant_2004 (1/6/2014)
January 6, 2014 at 3:35 pm
Markus (1/2/2014)
January 2, 2014 at 3:04 pm
Probably the most efficient would be to take a backup to a file and put that backup file on the FTP server. The client will then pull it down...
January 2, 2014 at 2:56 pm
Viewing 15 posts - 2,656 through 2,670 (of 6,679 total)