Viewing 15 posts - 31 through 45 (of 95 total)
gvdamn (11/2/2010)
Thanks for your reply.
To be honest: I'm not familiar with multi value parameters. Do you have any good (web) references?
How is it going to work out with ADO?...
November 2, 2010 at 7:59 am
Hi gvdam
You could pass all 100 dates to your proc as a multi value parameters, join with your stock price table and return all the rows in one call.
There are...
November 1, 2010 at 12:23 pm
GilaMonster (9/22/2010)
Sure...http://sqlinthewild.co.za/index.php/2010/01/12/in-vs-inner-join/
You will I hope forgive me for not writing it all out again.
Thank you, I knew there was something
Very nice article
September 22, 2010 at 9:35 am
My pleasure, we all get caught by the absorbing nature of the NULL at some point! 😉
September 22, 2010 at 9:23 am
blacklabellover2003 (9/22/2010)
--Checking for Services records for all services under each MTNetselect * from services (nolock) where service in (select service from defineservice (nolock) where mtnets in (20))
Hi black,
You want to...
September 22, 2010 at 9:16 am
Hi Mike
Is it possible that @compname has a NULL value?
If you concatenate a NULL to a string the string = NULL.
Try something like
SELECT 'my string' + 'my other string'
SELECT...
September 22, 2010 at 9:10 am
Hi
One way to do this is using osql.exe
http://msdn.microsoft.com/fr-fr/library/ms162806.aspx
Create a .cmd file with your osql commands, in this case one command per database/server
osql -Syourserver -dyourdb -E -icommand.sql -oOUTPUTFIL.txt
Create the command.sql file...
September 21, 2010 at 11:30 am
This should be in SQL Server 2008 forum.
This was resolved on the MSDN forum:
September 21, 2010 at 11:10 am
Hello YTZ
The desynchronization between the user SID and the login SID happens after the restore because the SID are server specific.
Use this script to display desynchronized users
SELECT
sysusers.sid,
sysusers.name,
syslogins.sid,
syslogins.name,
*
FROM
sysusers
INNER...
September 21, 2010 at 8:55 am
Very inspiring story, all the best to Josef and his family
November 17, 2009 at 2:20 pm
Hi
How exactly did you retrieve your index list?
Using sp_helpindex or sys.sysindexes?
You will find stats in sys.sysindexes but sp_helpindex returns only indexes.
March 30, 2009 at 8:37 am
Hi
I understand you still have the dev's computer?
Try login on his machine with a local administrator and access the database with Windows Authentication. Default installation have the group BUILTIN\administrators...
March 30, 2009 at 8:31 am
You can find two excellent articles from Jeff Moden on cross tabs and pivots here that should help you tackle this challenge.
Cross Tabs and Pivots, Part 1 – Converting...
March 27, 2009 at 12:28 pm
Viewing 15 posts - 31 through 45 (of 95 total)