Viewing 15 posts - 6,091 through 6,105 (of 6,215 total)
Which part isnt working? The final group by looks weird but I have not tried it yet. Can you post ddl for the tables involved along with some insert statements...
August 6, 2001 at 2:42 pm
I have not tried them, but they arent flagged as read only in the object browser.
Andy
August 6, 2001 at 2:37 pm
Dont you think you have many options from EM. Take a look at script tab under options in Query Analyzer. Another way would be to use DMO and set the...
August 6, 2001 at 12:30 pm
Hey, I didnt even KNOW there was a configuration collection. Found a different way to do it:
Dim oServer As SQLDMO.SQLServer
Dim o As SQLDMO.Registry
Set oServer = New SQLDMO.SQLServer
oServer.LoginSecure = True
oServer.Connect "."
Debug.Print...
August 6, 2001 at 12:14 pm
Hey Joe,
Thats not a bad idea. Though Im sure there will be some who DONT want it as the default option! I'll put this in our queue of things to...
August 6, 2001 at 12:04 pm
Is there a defined limit to the number of params you'd have in the array? Why not just declare them all as parameters...var1, var2, var3, etc.
Another method would be to...
August 5, 2001 at 2:48 pm
Depends on what you call mastering. I'd suggest you be pretty darn comfortable with TSQL before taking the exam - along with all the other things MS lists as exam...
August 5, 2001 at 2:45 pm
You're probably want to use transactional replication - but you need to take a look at your goals to make sure. Generally snapshot is too expensive in bandwidth and merge...
August 5, 2001 at 2:42 pm
Havnt tested, but this shoudl be close - it should return the top level record where catid=1 and up to 3 levels of child records.
select L1.*, L4.* from...
August 4, 2001 at 6:55 am
If you KNOW the max depth of the tree, you can just do a select that has a series of self joins (left outer from top to bottom). If you...
August 3, 2001 at 7:31 pm
I've run into a not really related problem - but you may find interesting anyway. We use transactional replication a lot, but with relatively huge latencies..30 mins to an hour....
August 3, 2001 at 1:01 pm
Hey Trisha,
Thanks for the follow up. Im not against using identity col for primary keys - in many cases I find it simplifies maintenance. Hungarian though - cant support that,...
August 2, 2001 at 6:35 pm
You've got to be executing that code a LOT to worry about the time it takes to evaluate nulls! Code it so that it works, cleanly.
Andy
August 2, 2001 at 6:31 pm
Disks are the big thing. You need fast drives, but more importantly bandwidth. Fibre!
Andy
August 2, 2001 at 6:29 pm
Viewing 15 posts - 6,091 through 6,105 (of 6,215 total)