Viewing 15 posts - 181 through 195 (of 2,008 total)
You shouldn’t use table variables for huge data... temporary tables or actual tables are better.
February 9, 2012 at 8:01 am
Few Questions:
•Is it in Windows Authentication Mode or Mixed Mode?
•With which account you are trying to login? The same you used for installation or different?
•How did you configure the SQL...
February 9, 2012 at 7:58 am
Kiran... Please take it positively. Professionals here are volunteers and can’t help you if you can't assist them in helping you.
DDLs, SQL Scripts, Execution Plans are required for Performance Tuning...
February 9, 2012 at 7:35 am
Few more options:
BULK INSERT (Transact-SQL)
http://msdn.microsoft.com/en-us/library/ms188365.aspx
bcp Utility
February 9, 2012 at 7:29 am
Please keep in mind...
Microsoft Certification Exam Policies
http://www.microsoft.com/learning/en/us/certification/exam-policies.aspx
February 9, 2012 at 7:24 am
It’s a nice discussion but I see less practicality in it. Please look into the example that Joe has shared.
Do we really need to update Orders table based on Order...
February 8, 2012 at 8:57 am
If the database has high transaction rate then log backups with 6 hrs frequency are not sufficient. Even if transaction rate is normal (few updates in hrs, data loss accepted...
February 8, 2012 at 8:46 am
I am sorry I didn’t get you.
I am writing my understanding; please correct me if I am wrong. You have one source (base) database and two copies of it....
February 7, 2012 at 8:32 am
Sorry to disagree with you Johan... It looks like 5GB database.
~5Gb data, with new tables created daily, and updates across around a dozen tables each day.
February 7, 2012 at 8:26 am
Per BOL:
READ UNCOMMITTED
Implements dirty read, or isolation level 0 locking, which means that no shared locks are issued and no exclusive locks are honored. When this option is set, it...
February 7, 2012 at 8:20 am
"NOLOCK" hint is the culprit here.
February 7, 2012 at 8:17 am
Does the Backup DB & Replicated DB have same database schema (tables, indexes etc.) and same data volume? In simple words, are they identical in all aspects?
February 7, 2012 at 8:15 am
Few Questions:
•Do you really need all the columns in SELECT clause?
•7 Inner Joins with 40M records table and No WHERE condition. Do you need all data?
•What does it return? sp_spaceused...
February 7, 2012 at 8:02 am
It depends. If a recompile which takes few milliseconds and results in query to return resultset in minutes (originally hours), the choice is very much clear.
February 7, 2012 at 7:50 am
Viewing 15 posts - 181 through 195 (of 2,008 total)