Viewing 15 posts - 1,051 through 1,065 (of 1,219 total)
Again:
The correct behavior for an aggregate concatenation query is undefined.
The vendor is not giving any guarantees, and this is the key issue.
Up to SQL Server 6.x GROUP BY implied an...
July 25, 2013 at 2:39 am
ksatpute123 (7/25/2013)
July 25, 2013 at 2:12 am
If you have a CLR solution, looks like your main problem is your DBA.
Could you post the output from "SELECT @@version" for your server, as well information about the machine....
July 25, 2013 at 2:09 am
Sorry, it's far from clear what you are doing. But as I recall what you down load is a self-extracting package. Thus, once you have extracted the package, you need...
July 25, 2013 at 1:53 am
The article is certainly contradictive, but I've decided to let it stop with the first sentence:
The correct behavior for an aggregate concatenation query is undefined.
The article then goes out of...
July 25, 2013 at 1:48 am
The text for SET NOCOUNT ON, says: SET NOCOUNT ON prevents the sending of DONE_IN_PROC messages to the client for each statement in a stored procedure. DONEINPROC is generated in...
July 24, 2013 at 4:13 pm
Alan.B (7/24/2013)
Why is the SELECT@x=@x+ method not guaranteed to work?
Why would it?
See this KB article Pay particular attention to the first sentence under Cause.
July 24, 2013 at 4:01 pm
pksutha (7/22/2013)
Again i'm making another record entry. Here it should come ID value is 6.
No. It should become a value > 5.
If you need consecutive numbers, you should not use...
July 24, 2013 at 3:56 pm
See http://www.sommarskog.se/blobload.txt for a simple example.
July 24, 2013 at 3:51 pm
Maybe you should keep the default as it is.
You could use user_id() and this returns sys.principals.principal_id. The value would not change if the database is moved to a different server....
July 24, 2013 at 3:50 pm
Funny. And it only happens to views? What happens if you try to script these views?
July 24, 2013 at 3:43 pm
SELECT substring(list, 1, len(list) - 1)
FROM (SELECT list =
(SELECT DISTINCT name + ','
...
July 24, 2013 at 3:37 pm
rajborntodare (7/24/2013)
and one more thing is... i checked for the version number in sql server it does show the SQL RTM version number...No update was done to the SQL Server..
In...
July 24, 2013 at 3:17 pm
You wanted to convert to datetime, didn't you? Datetime is a binary value and includes no format. If you want a text string, just add a conversion to varchar. However,...
July 24, 2013 at 3:12 pm
Rob-350472 (7/24/2013)
This might sound dumb, but what do people actually consider the bug IS?
You got incorrect results. That's a bug.
Optimize for uknown may 'fix' the issue in this situation but...
July 24, 2013 at 3:11 pm
Viewing 15 posts - 1,051 through 1,065 (of 1,219 total)