Viewing 15 posts - 4,066 through 4,080 (of 5,394 total)
If this is a x64 machine, I would also check if there's a registry key like this:
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Microsoft SQL Server\MSSQL.1\MSSQLServer
If you find a key like this, it could be due to...
June 28, 2010 at 4:07 am
SQL browser settings are stored under this registry key:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\90\SQL Browser
You could disable the SSRP listener setting the key to a value of 0, but this would prevent the...
June 28, 2010 at 4:03 am
Thanks for giving us feedback on your issue.
I hope this helps others experiencing the same.
June 28, 2010 at 3:20 am
90 stands for SQLServer 2005.
How many instances are running on that machine?
Try running this from a command prompt and post here the results.
sc query | findstr /I "SQL"
June 28, 2010 at 3:19 am
Ratheesh.K.Nair (6/28/2010)
C:\Program Files\Microsoft SQL Server\90\Shared>sqlbrowser.exe -c
It doesn't look like SQLServer2008 installation path.
Are you sure?
June 28, 2010 at 2:08 am
Don't start it as service.
Stop the service, open a command prompt and run sqlbrowser.exe -c.
June 28, 2010 at 1:46 am
sp_msforeachdb uses the ? placeholder for the current database being processed.
This should do the trick.
exec master..sp_msforeachdb 'select max(len(name)) from [?].sys.tables'
June 28, 2010 at 1:44 am
Have you tried running it with the -c command line switch?
Does it return any errors?
June 28, 2010 at 1:41 am
dave1982 (6/25/2010)
The Bussiness Analyst
The System Architecht
The DBA
The Developer
The Trainer
The Support!!
Now I have an argument that these should all be seperate rolls...
June 25, 2010 at 10:54 am
Paul White NZ (6/25/2010)
... but I guess not everyone in the world reads my posts and runs my code
They don't know what they're missing! 😛
June 25, 2010 at 7:17 am
Paul White NZ (6/25/2010)
June 25, 2010 at 7:02 am
I didn't know that. Thank you for pointing it out.
I think I'll be adding schemabinding to LOTS of UDF soon. 😉
June 25, 2010 at 4:18 am
Great code, Paul, as usual!!
Just one question: what does schemabinding mean here? The return value depends only on the input parameter, so I miss the point on enabling shemabinding.
June 25, 2010 at 3:54 am
I think you will find and answer here:
June 25, 2010 at 3:07 am
Viewing 15 posts - 4,066 through 4,080 (of 5,394 total)