Viewing 15 posts - 286 through 300 (of 2,647 total)
PGarberick (8/16/2012)
August 16, 2012 at 11:39 am
Lynn Pettis (8/16/2012)
asranantha (8/16/2012)
why isbbelle gets erroeand williams inserts 2 rows +julianna insert 12 rows are not lodead in in toy table how u say thatone
Because Isabelle can't commit the...
August 16, 2012 at 11:36 am
1- William logs into the database
2- Julianna logs into the database
3- William sees 12 rows in the TOYS table
How does he "see" 12 rows? SELECT TOP 12? SELECT *?...
August 16, 2012 at 11:02 am
Second question... What does Isabelle see when she runs a commit? :w00t:
Also, the question is incomplete. Like asking how many car lengths are between me and that tree over...
August 16, 2012 at 10:43 am
david.holley (8/16/2012)
OK, well now I'm a fan for SQLSearch by Redgate.
It is quite a nice product, huh?
August 16, 2012 at 6:22 am
Jeff Moden (8/15/2012)
SQLKnowItAll (8/15/2012)
Jeff Moden (8/15/2012)
SQLKnowItAll (8/15/2012)
Jeff Moden (8/14/2012)
SQLKnowItAll (8/14/2012)
August 15, 2012 at 7:44 pm
Jeff Moden (8/15/2012)
SQLKnowItAll (8/15/2012)
Jeff Moden (8/14/2012)
SQLKnowItAll (8/14/2012)
August 15, 2012 at 2:40 pm
And this?
SELECT DISTINCT so.name
FROM sys.objects SO (NOLOCK)
INNER JOIN sys.sql_modules SC (NOLOCK) on SO.object_Id = SC.object_id
AND SO.Type = 'V'--P for stored procs
AND SC.definition LIKE '%textSearch%'
ORDER BY SO.Name
August 15, 2012 at 1:56 pm
What about this? I think without schema_binding on the view, you have to search the view definition...
USE databaseName
GO
SELECT Distinct SO.Name
FROM sys.sysobjects SO (NOLOCK)
INNER JOIN sys.syscomments SC (NOLOCK) on SO.Id...
August 15, 2012 at 1:49 pm
Lowell (8/15/2012)
this example will give you all columns that have a certain name;
if you want to specifically limit it to a specific table also, simply uncomment out the...
August 15, 2012 at 1:29 pm
I use this, but syscomments is not the best place anymore. I'm sure someone will respond with the new dmv for this.
SELECT *
FROM sys.objects SO (NOLOCK)
INNER JOIN syscomments SC...
August 15, 2012 at 1:29 pm
If you want the objects without data, use the right-click -> Generate Scripts option on the database.
August 15, 2012 at 1:18 pm
Luis Cazares (8/15/2012)
The order should be determined by UnitsInStock for each CategoryID, unless there is a zero for any value in UnitsInStock for that particular CategoryID, the order should...
August 15, 2012 at 12:52 pm
Viewing 15 posts - 286 through 300 (of 2,647 total)