Viewing 15 posts - 91 through 105 (of 200 total)
GilaMonster (10/8/2009)
GSquared (10/8/2009)
October 8, 2009 at 9:33 am
OP is
a) an idiot for thinking he can pull it off for any amount of time
b) morally reprehensible
c) in italy
its point c there that has stopped me from being worried...
October 8, 2009 at 9:26 am
david.l.mulholland (9/30/2009)
October 6, 2009 at 9:41 am
I have a sql 2005 sp2 box right here, I created a sproc and it appeared under programability/stored procedures.. not under system stored procedures..
can you give me an example of...
October 2, 2009 at 3:04 pm
im with jeff on this.. i dont think they work any better.. cursors are a horrible horrible solution for the most part.. the only plus to oracles over sql that...
October 2, 2009 at 3:00 pm
what PP- said.. you can't USE a variable.. you have to build it into a string and execute the string..
annoying from time to time.. but oh well 🙂
October 2, 2009 at 2:55 pm
memorizing questions to answers is no substitute for real world experience..
take an entry level position and learn from someone who knows.. devour BOL and any other source you can get...
October 2, 2009 at 2:50 pm
in sql management studio, you can expand your database, then expand views, then expand system_views..
thats where it'll be..
you'll have to query it from a New Query window though..
USE myDB
GO
SELECT *...
October 2, 2009 at 1:02 pm
Can you list a couple of rows of data that you think it should return?
Also, what parameters are you passing to the stored proc?
September 22, 2009 at 3:23 pm
a sql trace over x days/weeks/years could be pretty painful though i'd have thought?
September 3, 2009 at 12:57 pm
theres always the painfully obvious, put an insert into a table at the start of each sproc..
not the most efficient way to do it though 🙂
September 3, 2009 at 12:16 pm
I believe you can try:
SELECT SERVERPROPERTY ('edition') as [Product Edition]
64 Bit should say Standard Edition (64 Bit)/Enterprise Edition (64 Bit) in the text, 32 bit will just say Standard Edition...
July 28, 2009 at 3:01 pm
Thanks guys..
I think I've been relying on the maintenance plans a bit too much lately (time constraints more than anything).. i think i'll just bite the bullet, mark off a...
July 23, 2009 at 9:31 am
Viewing 15 posts - 91 through 105 (of 200 total)