Viewing 15 posts - 16 through 30 (of 325 total)
bitbucket-25253 (4/17/2013)
Nice question ... Again thanks
+1
April 18, 2013 at 2:28 am
I don't see any trick ; easy one ...
adding join on duplicate values, make it like a cross product, get plenty of duplicate rows , add filter and...
April 15, 2013 at 10:40 pm
jlennartz (4/11/2013)
April 11, 2013 at 11:32 pm
Primo Dang (4/11/2013)
Got it right by eliminationThanks, Sasidhar Pulivarthi! 😀
+1
Thanks for the question ..
April 11, 2013 at 11:23 pm
Lowell (4/10/2013)
--common tables between the two
SELECT name from SandBox.sys.tables
INTERSECT
SELECT name from Dictionary.sys.tables
--tables only in SandBox
SELECT name from SandBox.sys.tables
EXCEPT
SELECT name from Dictionary.sys.tables
--tables only in Dictionary
SELECT name from...
April 10, 2013 at 10:04 am
sqlpanther (4/10/2013)
Hello All,Can someone tell me how can we find common tables between 2 databases? Any scripts or querry plzz.
thanks in advance...
common table , by name , by attributes or...
April 10, 2013 at 2:51 am
nice and straightforwad - instinct worked for me ..:w00t:;-)
April 9, 2013 at 12:55 am
The case statement will assign 'FF' to @str6 ,Remaining varaibles contains NULL values by default and not assigned with corresponding values of AA,BB,CC,DD and EE. The values are assigned...
April 3, 2013 at 3:41 am
db4breakfast (3/21/2013)
To be clear, we don't allow users to delete any record in our application. However there's a function for users to flag a record as error. Instead of cascade...
March 21, 2013 at 7:00 am
call.copse (3/21/2013)
Raghavendra Mudugal (3/21/2013)
...
- in general practice, as truncate removes all the records and no one wants to remove all the records from the table, only if any exceptional case...
March 21, 2013 at 5:08 am
One possible reason is that you can't control the order of locks being taken with cascading deletes and cascading updates. That makes it harder to avoid deadlock scenarios if you...
March 21, 2013 at 5:05 am
Hugo Kornelis (3/21/2013)
Toreador (3/21/2013)
Using cascade delete. If the business rule says that is the appropriate behaviour, then why avoid using inbuilt functionality that achieves exactly what you need?
One possible reason...
March 21, 2013 at 5:02 am
Dineshbabu (3/20/2013)
Lokesh Vij (3/20/2013)
db4breakfast (3/20/2013)
I never use cascade delete on a production db. It seem to be safer by allowing users mark order as "error" instead.
+1
same here. i feel it...
March 21, 2013 at 2:01 am
"It" refers to Truncate .
It's a DDL , Data definition language - why ? I think because It resets the identity, that is a database object property change. [because, it...
March 20, 2013 at 10:23 pm
Viewing 15 posts - 16 through 30 (of 325 total)