Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Blog Directory  >  Internet Blogs  >  Random Technical Thoughts | Things I want to remem internet Blog  > 

2017-02-28 22:08
In case you didn’t know the routes that configured using UI-Router are case-sensitive.  Which is definitely not what I would expect. To get around this problem you can add a snipp… Read More
2017-02-14 13:48
Sometimes you need a command prompt to do stuff.  That works fine if folder is need isn’t buried too deep in windows.  For example, C:\Windows\Microsoft.NET\Framework64\v4.0… Read More
2016-01-13 21:33
Here is script to get the file sizes of your db files: The results are ordered by the file size descending. So you can see what’s taking up all your hard drive space. select physical_n… Read More
2013-10-11 05:37
This script will list all indexes and their types (clustered/nonclustered). SELECT so.name AS TableName , si.name AS IndexName , si.type_desc AS IndexType FROM… Read More
2013-10-10 20:03
This script will provide a list of all stored procedures in a database along with the create script for each. SELECT specific_name, routine_definition FROM information_schema.routines… Read More
2013-10-10 19:20
Here is a script that will provide a summary of jobs that ran last night. This is helpful if you want a summary of your jobs instead of an email from each job. (You can setup one job to just… Read More
2006-06-07 11:16
Here is a script to check index fragmentation.  This is helpful if you need to determine if you need to rebuild indexes. SELECT dbtables.[name] as ‘Table’, dbindexes.[name]… Read More
2006-06-07 11:16
If you need to interface with SQLite there are a couple of steps. 1) You need to get the .net provider for SQLite from sourceforge.net 2) Then add a reference to System.Data.SQLite to your p… Read More

Share the post

Random Technical Thoughts | Things I want to remem

×

Subscribe to Random Technical Thoughts | Things I Want To Remem

Get updates delivered right to your inbox!

Thank you for your subscription

×