adam | Shared With: Everyone - Nov 28 2006 | sql server, database, microsoft, oracle
Quoted: Microsoft Corp may be taking the most heat among software vendors for security problems, but it's not always the one with the worst record.
ShareViewed: 4 Times
adam | Shared With: Everyone - Nov 19 2006 | IT, sql server, databaseQuoted: Some nifty SQL statements I made last week: Firstly, listing all databases on a server. -- Get Databases SELECT name FROM master.dbo.sysdatabases ORDER BY name Secondly, a way to get all the user-created stored procedures from a database. -- Get Stored
ShareViewed: 6 Times
adam | Shared With: Everyone - Oct 05 2006 | sql server, database, microsoft, @@identity, programming
good explanation of @@IDENTITY vs SCOPE_IDENTITY()... I never knew the difference. Also, there are 9 other things you should watch out for. (lots of common sense)
Quoted: Both @@IDENTITY and SCOPE_IDENTITY() return the last identity value (primary key) that was entered by your active session, but in different scenarios they can each ...
ShareViewed: 5 Times
adam | Shared With: Everyone - Oct 02 2006 | sql server, database, microsoft, programmingLooks nice for Data Dictionary searches...
Quoted: The following lengthy SQL script will create a system function in SQL Server that returns a data dictionary for any database on the server
ShareViewed: 1 Time
adam | Shared With: Everyone - Sep 26 2006 | sql, blogs, sql server, database, microsoft, not jesus![John Papa [MVP C#] : Find a Column, Find a Table in SQL Server](http://i.faves.com/01/49/e968/43ca5d21/e5725e827a92ab559c_5.jpg)
nice little stored procedure to find columns by name in a schema.
Quoted: Here is a short stored procedure that you can use to find: * a table by its full name * a table by partial name ...
ShareViewed: 2 Times
adam | Shared With: Everyone - Mar 30 2006 | Database, tips, sql server, not jesus, blogsA blog with SQL Server tips. This is especially useful since SQL Server 2005 is emerging onto the field of play... with major differences from SQL Server 2000.
ShareViewed: 1 Time
adam | Shared With: Everyone - Mar 16 2006 | SQL Server, Access, microsoft, Database
Not just with SQL Server. These functions work in Access too.
Unfortunately, using functions like there often times don't work over an ODBC connection (depending on your driver). It is oft tempting to use the database to do the date calculations... but you'll have better flexibility if you do your calculations in your application logic.
Regardless... these functions are definitely useful.
ShareViewed: 1 Time


Send Adam a friend request or a personal message instead.