Viewing 15 posts - 1 through 15 (of 16 total)
Good article, but I'd have included using derived tables to replace cursors and other use cases just as or more useful
January 20, 2008 at 7:39 am
You can integrate VSS, SQL Server, and Visual Studio with only one minor hitch. The named user that SQL Server is running as is what accesses VSS. You...
April 28, 2003 at 8:24 am
Sure you could create a work (reporting) database. This is a common solution that works well in many cases.
You still need to think about how you are...
April 21, 2003 at 7:43 am
VB Psuedo code
Add a reference to the "Windows Script Host Object Model"
Dim objShell As IWshRuntimeLibrary.IWshShell_Class
Dim hdlShell As IWshRuntimeLibrary.WshExec
Dim...
April 17, 2003 at 4:30 pm
I've had a similar issue but it turned out that the problem was the application generating the load.
If the reporting tool is generating queries one at a time sequentially and...
April 17, 2003 at 4:15 pm
ok, but the point is that data that is ending up in these transaction logs are calculations that are used in (essentially) a report. This "noise" increases the size...
April 17, 2003 at 3:48 pm
quote:
Why don't you take the Transaction log back up periodically.When ever you run the sp,Chk the trans log size before and after...
April 17, 2003 at 1:00 pm
quote:
Business Rule driven month end reports are often such an example. I've seen some that take hours to run - not...
April 8, 2003 at 11:54 am
Two Words: Virtual Tables
It is popular to say "avoid temp tables and cursors if at all possible", but this is difficult to do when you need a result that requires...
April 8, 2003 at 8:46 am
Kay:
'truncate log on checkpoint'??? Jeez, I guess you don't ever care about having to restore the database with the differential since you don't have them after you truncate...
April 2, 2003 at 4:11 pm
I would think about how and why you are using the permenant temp table (insert "Military Intelligence" or other Oxymoron joke here). I have found that this is most...
April 2, 2003 at 4:02 pm
I do not have the reference book with me today, but I'd put money that SQL Server 7 will also reorder the arguments of a where clause during the compile...
April 2, 2003 at 3:53 pm
I would suggest that you use newid() to get a uniqueidentifier type and use that instead of an identity column. It makes life so much easier - especially if...
March 31, 2003 at 8:13 am
Sorry jpipes, but I have to disagree with you about case and Underscores in names.
Capitals and underscores look consistant in multiple IDEs; mixed cases are harder to read.
I format...
March 3, 2003 at 2:31 pm
Since everyone else is giving their $0.02...
I wrote a database standards guide and here is a part ot it dealing with columns names
I REALLY disagree with naming the PK column...
February 27, 2003 at 11:46 am
Viewing 15 posts - 1 through 15 (of 16 total)