Viewing 15 posts - 16 through 30 (of 117 total)
I could see using this script on a SQL express installation without SQL Agent installed. Windows Scheduled Taks would be used for scheduling it.
I am not sure how I...
January 5, 2011 at 10:10 am
samehzagloul
I ran the query against AdventureWorks and the join to data type included column names as a type
Here is a sample of the output
TableNameColumnNameNameLength
AddressAddressIDint4
AddressAddressLine1nvarchar120
AddressAddressLine1AccountNumber120
AddressAddressLine1Name120
AddressAddressLine1OrderNumber120
AddressAddressLine1Phone120
AddressAddressLine2nvarchar120
AddressAddressLine2AccountNumber120
AddressAddressLine2Name120
AddressAddressLine2OrderNumber120
AddressAddressLine2Phone120
December 9, 2010 at 7:04 am
TravisDBA,
I notice some tables where still being skipped after your latest changes. The query excludes tables without a clustered index.
To include them, modify the where clause to use (sysindexes.indid...
December 9, 2010 at 6:48 am
SanDroid,
You are right about the order. The columns types where still character because that is how sp_spaceused returnsthem. I updated the code with a a select that converts them...
December 8, 2010 at 2:44 pm
Thanks ngreene for sharing your script. Without it this forum topic and sharing of scripts would not of happened.
SanDroid my visual tests show the results are the same for both...
December 8, 2010 at 12:39 pm
Thanks for the article. It motivated me to look more into this sample tool and maybe make use of it.
At first I did not know what Execution Log Reports...
November 24, 2010 at 7:32 am
I found the solution I was looking for. I wanted to be able to use the installation GUI and still be able to specify the Analysis Services configuration folder location....
November 5, 2010 at 10:40 am
I recently discovered the space in the new table SQL_Sysprocesses was not being freed even though the delete old rows statement was successful for each package execution. To fix this...
October 20, 2010 at 7:17 am
Thanks for sharing your stored procedure. I was successful in creating and executing this stored procedure from a user database on SQL Server 2005 and 2008.
I was surprised that...
June 16, 2010 at 7:11 am
How many applications will be using these databases?
April 27, 2010 at 5:49 am
Database Mirroring and Window clustering both help with High Availability in different ways and both have limitations.
I look at Window clustering as keeping a spare server ready to go. It...
April 22, 2010 at 7:52 am
MaximumErrorCount is set for each container. For example Populate ADO Variable is set to 1 because if it can't set the variable there is no reason to attempt the other...
April 19, 2010 at 11:06 am
Some components such as fn_ServerInstanceName is included in the file attachment for the previous article: SQL Overview Part V[/url]
April 1, 2010 at 11:45 am
SQL Monitoring VI is coming out next week. Steve Jones must be planning ahead.
March 25, 2010 at 7:30 am
The scheduled job in the second step creates the temp tables on the local server. This allows the SSIS package to start.
Then when an item in the package connects...
March 5, 2010 at 9:36 am
Viewing 15 posts - 16 through 30 (of 117 total)