Viewing 15 posts - 46 through 60 (of 992 total)
Does SQL 7 include the procs for
* Registry access
* OLE Automation?
You could go either of those methods.
Or, use xp_cmdshell to run "set computername" and parse the results.
Or, create a table,...
March 9, 2008 at 7:59 pm
I think you're still doing the same (inefficient) algorithm but with more convenient syntax. As suggested you should try to think of the overall result that you want -...
March 7, 2008 at 4:52 am
Perhaps try a select * rather than going for the count straight away. You'll see all of your column names there. Perhaps you've misspelt the name in either...
March 7, 2008 at 4:48 am
Great article. Replication has been one of those "spooky" things that I have wanted to play with but setting up a test environment to learn in and then willing...
March 7, 2008 at 4:47 am
And you read my silly first post before I posted the sheepish "oops" one. 🙂
March 4, 2008 at 6:47 am
Silly me, if I paid enough attention to Jeff's example I'd see that he's executing it 100 times already and returning different results 🙂 And I'd seen similar things...
March 4, 2008 at 6:46 am
I think you're right Grant. Certainly the error message from SQL 2000 is along the same lines. If you try to convert the string '-0' to a float...
March 4, 2008 at 6:38 am
Use the SQL Server manual - called SQL Server Books Online - and look at the topic "Checkpoints and the Active Portion of the Log". There's a wealth of...
March 4, 2008 at 6:37 am
Do you get a similar performance boost when you simply restart the SQL Server service rather than restarting the server?
Definitely treat your logs with respect 🙂
You could also try running...
March 4, 2008 at 6:33 am
For the DBA you have one integrated tool (although slower than old isqlw in many ways unfortunately) rather than QA and EM separately.
You can now have the GUI script all...
March 4, 2008 at 6:30 am
I haven't looked into it too far, but does MS SQL use some smarts (in 2000) that assumes that a function is deterministic given its parameters and thus executes it...
March 4, 2008 at 6:28 am
Have to agree with the others...
Whilst I understand that you use this pattern as a way of debugging and inspecting what your procs do, I think good commenting, some debug...
March 4, 2008 at 6:22 am
At the risk of reinvigorating fanatical discussions (search for the threads associated with any NULL-related article on the site), it's not Microsoft's design flaw as NULLs are a basic part...
March 4, 2008 at 6:12 am
I've just been getting my feet wet with Analysis services myself. In this whitepaper (http://www.sqlbi.eu/Default.aspx?tabid=80) they use many-to-many dimensions to do exactly what you're after. For...
March 2, 2008 at 10:10 pm
Viewing 15 posts - 46 through 60 (of 992 total)