Viewing 15 posts - 301 through 315 (of 2,008 total)
Will it not truncate the log files?
January 13, 2012 at 8:54 am
Transaction Log Backups should do the trick (assuming database is in FULL recovery model).
January 13, 2012 at 8:42 am
@aurato: Thank you very much for posting the link for Jeff's Interview. I owe you.
All@SSC: It’s irrelevant to this thread but can you please provide me pointers for such interviews....
January 12, 2012 at 10:31 am
Yup, I missed that part but not entirely. OP didn’t mention it explicitly but it’s a fair assumption and I agree with you.
I probably put myself in his shoes (or...
January 12, 2012 at 9:35 am
It could be a hardware issue but my question is still valid. If I query (or backup) on database with images, I shouldn’t expect much performance. OP mentioned he is...
January 12, 2012 at 9:22 am
Please read the articles Jason has already suggested. It will guide you on, what you are looking for.
January 12, 2012 at 9:13 am
Query on view will hit main database every time. Will it not consume the bandwidth? I believe that’s the main issues here.
January 12, 2012 at 9:10 am
Ugly Solution:
•Create a dummy database.
•Create the table that matches with Image_table in your main database.
•Export the data into dummy database.
•Clean the data (Images) in main database.
•Create FULL backups for these...
January 12, 2012 at 8:45 am
& the Web resource: http://openlearn.open.ac.uk/mod/oucontent/view.php?id=399373§ion=1.2
January 12, 2012 at 8:23 am
The system table’s structure remains same irrespective of server edition. The features availability is dependent on the edition (license / key). These are two independent facts.
January 12, 2012 at 7:23 am
You should use following syntax for Create Database statement in SS2K5.
CREATE DATABASE database_name
[ ON
[ PRIMARY ]...
January 12, 2012 at 7:15 am
Also, Security Measures are based on trust model. If we can’t rely on Administrators (which we shouldn’t) of your application / database then we can’t rely on anyone.
I am aware...
January 11, 2012 at 10:50 am
If you are an Everything DBA (Hybrid DBA) then AD management falls in your bucket. I believe AD Management is out-of-scope to DBA roles (in general). However it’s a nice...
January 11, 2012 at 10:43 am
If somebody can login to Application Server & read configuration files, he can delete website as well (worst scenario).
SQL Server Logins are manageable for Web Applications. Few logins (Logical Grouping...
January 11, 2012 at 10:12 am
Please alter your script with following & let us know the result.
--IF @@ROWCOUNT = 2
IF 1 = 1
January 11, 2012 at 9:21 am
Viewing 15 posts - 301 through 315 (of 2,008 total)