Ok I like organization. Too much perhaps. But when my project root folder gets full (Microsoft likes everything in there) I get tired of fishing around for all the parts of everything. Did I name that thing reportInventory, ir InventoryReport? So I like to make folders for everything, like so.
Bryan Valencia is a contributing editor and founder of Visual Studio Journey. He owns and operates Software Services, a web design and hosting company in Manteca, California.
Subscribe to:
Comments (Atom)
How to Auto-generate Order Line Item numbers for bulk uploads
I had a problem where I had 17000 line items to insert into 9000 orders. The system required line item numbers, preferably numbered 1throug...
-
The easy and obvious answer is to use a function, not a procedure. Then you can use it like any built-in T-SQL function. select 1, dbo.Fun...
-
There is a long explanation about SQL server caching values for autoincrement columns, and losing them when the server is restarted, but the...
-
This article explains how to copy a database from one server to another when Backup/Restore is not an option. This will work as long as...