Viewing 15 posts - 7,801 through 7,815 (of 18,926 total)
I didn't know about the synonyms in the same DB, I always used them for cross server problems. So assuming your sources are right (and that you may need...
September 16, 2010 at 7:05 am
You need to use dynamic sql to create the build scripts to install all the objects in the database.
You script would need a single parameter which would be the database...
September 16, 2010 at 6:54 am
Assuming you are using stored procs and not dynamic sql in the front end (which then offers a very simple solution), you can change that value in the install script(s).
Or...
September 15, 2010 at 2:53 pm
Steve posted a link a few months ago to a study that found out that working 40 hours / week for 2 months gave the same exact output as working...
September 15, 2010 at 2:50 pm
Ya I've seen that feature elsewhere, I'll propose this feature for this site, it would definitly be a great addition.
September 14, 2010 at 6:33 am
I'm not surprised actually. If you were able to do it 500 times and now 501 is not working then the problem is with that 1. From there...
September 14, 2010 at 6:10 am
Are you sure the sp is not locking or deadlocking?
September 13, 2010 at 1:44 pm
GilaMonster (9/13/2010)
Please note: 4 year old thread.
Are they any less clueless now?
Not from what I've seen here.
September 13, 2010 at 1:32 pm
Well ya, add another parameter for each "nullable" parameter that says wether the user set it to null or wether you did it yourself in the application. That's longer...
September 9, 2010 at 11:08 am
jagat.patel (9/9/2010)
Lets say I have default value as 1 then what??
Assuming you can answer the "why do you care" question...
you can run if @Age = -987654321... do whatever.
I've never seen...
September 9, 2010 at 10:58 am
Yes, you need to define an impossible value for the parameter and set that as the default value
IE : @Age = -987654321
Then you can check between not supplied and NULL...
September 9, 2010 at 10:53 am
Unsubing...
thanks for sending me 18+ e-mails to my box :w00t:.
September 9, 2010 at 10:49 am
poldi.rijke (9/2/2010)
you mean sql 2005 😉
Same difference.... it's the same core engine, different service pack. :w00t:
September 2, 2010 at 7:57 am
Look you either do it right or you use a cursor to call that sp a couple 1000 times.
I garantee you that the cursor will be slow as hell.
Redoing it...
September 2, 2010 at 7:21 am
You can always search the network or dev computer for *.rdl* files.
The last star is important because there's a slim chance that the extension is rdlc which would mean an...
September 1, 2010 at 8:39 am
Viewing 15 posts - 7,801 through 7,815 (of 18,926 total)