Viewing 15 posts - 31 through 45 (of 130 total)
I personally do not trust users to know what a table or a column is let alone what they are called in the database.
I am also not...
June 4, 2012 at 3:30 pm
Something like this?
http://www.mssqltips.com/sqlservertip/1764/steps-to-install-sql-server-2008-service-pack-1-sp1/
June 4, 2012 at 12:32 pm
Sorry, just couldn't copy and paste as fast as Lynn. 🙂
May 31, 2012 at 12:58 pm
CREATE TABLE #temp
(
[Friday1] CHAR(10) ,
[Friday2] CHAR(10) ,
[Friday3] CHAR(10)...
May 31, 2012 at 12:49 pm
Way back when I used to program a lot of Access front end applications I found that using any kind of "bound" form or report would perform poorly due to...
May 30, 2012 at 4:47 pm
As long as database backups are taken I would not backup up the MDF, NDF or LDF files. Its redundant and less usefull.
May 25, 2012 at 12:56 pm
The OP asked if his plan to partition the table could improve performance and I stated a fact about what he was proposing. Was I wrong?
I...
May 23, 2012 at 8:39 am
Yes. The concept is called 'partition elimination'. Especially when scanning the table for a date range, the optimizer will realize it only has to scan the current year...
May 22, 2012 at 11:06 am
I believe the answer is Yes there is a performance difference.
The non-clustered index on a HEAP must find the page using the ROWID then find the row data...
May 9, 2012 at 5:34 pm
My experience with Access is that anything done with GUI tools is unacceptably slow. Therfore, I always use unbound forms with VBA code that opens recordsets directly and places...
April 30, 2012 at 5:42 pm
Some people think that SQL server 2008 and SQL server 2008 R2 are the same thing. And they are on different service packs.
April 30, 2012 at 5:30 pm
When you launched setup.exe did you right-click and select 'run as administrator'? I have found that even though the account I am logged in with is a local admin,...
April 30, 2012 at 4:55 pm
Your first method is close.
The AD group should be added to the SQL server and granted the level of permissions needed. DBA team probably needs sysadmin server...
April 25, 2012 at 5:22 pm
Youre windows account must be added to the logins on the SQL server. In order to do anything in addition to connecting you will also need permissions to access...
April 16, 2012 at 12:06 pm
Viewing 15 posts - 31 through 45 (of 130 total)