Hi friends
Due to transformation into new project I really not getting time ..(This is my best reason from stepping backs from post writing
)..
Now lets see by changing some time parameter for blog posting how can achieve stability in it !!
So lets continue with today SQL Scripting post !!
Sometimes I thought when we are having fast analysis into project , for example consider following situation where we have very less time to analysis like …
1.IF I have analyze the Entire Database very fast !!
2.IF I have been migrated into another project which is in very critical phase.
3.I wan step back and see what is my data in all tables
In short I want to see all the data from all table
In such case most of the time we tends to always write “Select * from “ n and n number of times ..
So here is script which will reduce your time and ad give you select * from (for all table ).
Script
--Select ALL table from all column
SELECT
'Select * from ' + name
FROM sys.sysobjects
WHERE xtype = 'U'
order by name
Output

Following simple demonstration to select all

Now how to use this for top column
Just by playing with this query we can achieve lot more lot more useful script
--Select TOp 100 from ALL table from all rows
SELECT
'Select Top(100) * from ' + name
FROM sys.sysobjects
WHERE xtype = 'U'
order by name
Output

Or may be I can use this for all count
-- COUNT from ALL table from all rows
SELECT
'Select COUNT(1) from ' + name
FROM sys.sysobjects
WHERE xtype = 'U'
order by name
Output

Hope this Helps !!
Visit SQL tab for more SQL Script .
Thanks for visiting my blog !!