Viewing 15 posts - 286 through 300 (of 325 total)
Hello!
I believe the most important keys to solving this one (as you rightly mentioned) are to understand that:
1. Both the WHERE & HAVING are "binary" conditions, i.e. they would either...
September 8, 2010 at 3:40 am
One thing I find that normally interferes with automatic formatting is the use of tabs. Try replacing tabs with spaces by selecting the code block an then going to Edit...
August 30, 2010 at 11:39 am
I am trying to find out "why" this behaviour is seen and believe that there is definitely something influencing this (I am just not able to find out what). It's...
August 27, 2010 at 12:12 am
The essence of this question is in the following:
SELECT CONVERT(NVARCHAR(2),0) -- returns 0
SELECT CONVERT(INT,N'') ...
August 26, 2010 at 11:13 pm
Hello!
Here's more food for thought:
I got a 64-bit Intel Xeon dual CPU box (2x2GHz), with 4GB RAM running Windows Server 2008 R2 and SQL Server 2008 R2. The system went...
August 26, 2010 at 12:07 am
Hello!
I believe the rating of bugs is very much linked to a previous editorial that ran on SSC about scoping features & bugs for a new release.
Scoping is indeed very...
August 25, 2010 at 9:42 am
I agree. This definitely looks like a buffer/memory setting of some sort. I ran this today on a much powerful server and workstation (as compared to my previous attempt) and...
August 25, 2010 at 1:55 am
Not a problem at all. I am happy that you are now all set.
Have a wonderful day ahead!
August 25, 2010 at 1:37 am
Try this: (I had removed the UNICODE N' in the query earlier, but had missed the '' at the end of the file name, which have been removed now)
DECLARE @SourceDB...
August 24, 2010 at 6:00 am
The error was a OutOfMemory exception in the messages pane.
August 23, 2010 at 2:09 pm
Okay. So, the problem is not in the query. The problem is in returning results back to SSMS.
The following works:
Select a.C + b.C + c.C + d.C AS 'AsciiChars'-- create...
August 23, 2010 at 1:41 pm
Oops...sorry. Try this: (I removed the UNICODE N' from the start of the path)
DECLARE @SourceDB nvarchar(255)
set @SourceDB = 'D:\FS_Database\Backups\FSDBMR\FSDBMR_backup_' + cast(datepart(year, getdate()) as varchar(4))
+ replace((space(2 - len(cast(datepart(month, getdate()) as varchar...
August 23, 2010 at 1:28 pm
Is this what you were looking for?
http://www.pinaldave.com/best-sql-server-download.cfm?Download=Logical-Query-Processing-Poster
August 23, 2010 at 12:33 pm
Hello!
I believe your issue is because you are not adding a valid backup device. The below should do the trick (I myself use it in my development environments).
DECLARE @SourceDB nvarchar(255)
set...
August 23, 2010 at 12:26 pm
Hello!
Just a thought - I trust you do not have any white spaces in the database name - can you just give it a try (eg. you have [MyDB ]...
August 23, 2010 at 11:30 am
Viewing 15 posts - 286 through 300 (of 325 total)