Viewing 15 posts - 3,886 through 3,900 (of 9,643 total)
SQL Server does cache data in memory. If you use SET STATISTICS IO ON and view the results logical reads are reads from memory while physical reads are when...
November 10, 2009 at 7:24 am
If you set the hidden property to true then they will be collapsed by default.
November 10, 2009 at 7:22 am
If you are using SSIS you do not need to export to a CSV. You can directly access the FoxPro table(s). You can download the FoxPro OLEDB driver...
November 10, 2009 at 7:20 am
Can you post the code that is working and the code that is not working?
November 10, 2009 at 7:18 am
If the person is using SSMS to connect to the server there is no way to keep them from seeing databases that exist (at least not that I know of)...
November 10, 2009 at 7:17 am
You can also visit Ola Hallengren's site[/url] he has a set of database maintenance scripts that include backups.
November 10, 2009 at 7:15 am
If you install the client tools for SQL Server 2005 then Business Intelligence Development Studio (BIDS), a slimmed down version of Visual Studio, that allows you to develop reports...
November 10, 2009 at 7:14 am
Well, if you have autocreate statistics on, I'm going to guess that SQL Server will end up creating most of the statistics recommended by DTA.
In my opinion, indexing is more...
November 10, 2009 at 7:11 am
Well, your query could specify SELECT DISTINCT or a GROUP BY to eliminate duplicates. Also in report you can choose to only show a value once.
November 10, 2009 at 6:59 am
What events are you tracing in the trace?
November 10, 2009 at 6:56 am
November 10, 2009 at 6:47 am
Actually if you use a server-side trace with only the sql:stmtcompleted event filtering on TextData you probably wouldn't even realize the trace is running. Are you aware that with...
November 10, 2009 at 5:41 am
When you convert a date to varchar it is doing character conversion which is different than data conversion. You would need to be sure that the date strings are...
November 10, 2009 at 5:38 am
No problem, as long as what you have works.
November 9, 2009 at 4:14 pm
I'd do as Flo has recommended although with the caveat that you may want to look at executions in addition to duration. You may get a bigger boost out...
November 9, 2009 at 4:12 pm
Viewing 15 posts - 3,886 through 3,900 (of 9,643 total)