Viewing 15 posts - 4,066 through 4,080 (of 9,643 total)
The Apress SQL Server books are pretty good. This is a good web site obviously. There is also sqlshare.com which has short how-to videos for SQL Server. ...
October 9, 2009 at 1:32 pm
Garadin (10/9/2009)
"pimp my blog". Nice. :w00t:
I'm not sure what else to call it when I reference my own blog. I feel kind of dirty doing it, but...
October 9, 2009 at 1:17 pm
Steve Jones - Editor (10/9/2009)
October 9, 2009 at 9:26 am
Sorry, there is nothing else I can think of.
October 9, 2009 at 9:08 am
You need to define the parameters to allow blank values for string parameters otherwise they are considered required
October 9, 2009 at 9:02 am
Do you mean the WHERE clause in the cursor definition or the WHERE clause being set in the @cmd variable?
I would think that an email without any records would be...
October 9, 2009 at 8:40 am
In SSMS you can go to Tools -> Options -> Query Results and in the Results to Grids/Text there is an option to include the query in the result set.
October 9, 2009 at 8:35 am
This is just an informational message that is telling you that DBCC CHECKDB was run since the last SQL Server restart.
October 9, 2009 at 8:30 am
Well, without more details it's hard to give you an answer. Basically the Query Optimzer has decided that, given the available options, a clustered index scan is the fastest...
October 9, 2009 at 8:22 am
Dave has supplied the answer. Not to pimp my blog, but I recently blogged about this issue and the post may help you, http://wiseman-wiseguy.blogspot.com/2009/09/on-vs-where.html
October 9, 2009 at 8:02 am
I'm going to venture a guess here. You are seeing recovering as a the status every time a database is re-opened. When SQL Server starts up a database...
October 9, 2009 at 7:59 am
I've never run an in-place upgrade, but I would be very concerned if the master database was still in 8.0 compatibility mode. To me it sounds like the upgrade...
October 9, 2009 at 7:44 am
I really don't know anything about using Pervasive, but maybe this willl help with the connection string settings, http://ww1.pervasive.com/library/docs/PSQL/950/prog_gde/prog_gde-04-3.html.
You might want to try a simple .NET app or a Script...
October 9, 2009 at 7:39 am
There are a couple of issues. One is that by putting a filter on table B in the WHERE clause you essentially changing your LEFT OUTER JOIN to an...
October 9, 2009 at 7:28 am
Cool solution Mark. Not one I would have thought of. I'd have done something like this:
DECLARE @string VARCHAR(10)
SET @string = 'Sarat'
SELECT
CASE
...
October 9, 2009 at 7:18 am
Viewing 15 posts - 4,066 through 4,080 (of 9,643 total)