Viewing 15 posts - 5,521 through 5,535 (of 7,164 total)
yoffes (7/14/2011)
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
July 14, 2011 at 11:09 am
Koen Verbeeck (7/13/2011)
Phil Parkin (7/13/2011)
Here is more detail. Some superb new features.
Oh crap. I had already trouble putting all the new features of CTP1 into a hourly session.
How am I...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
July 14, 2011 at 10:18 am
Phil Parkin (7/13/2011)
Here is more detail. Some superb new features.
The list of new features is impressive...lots of my past gripes have been addressed 🙂
Huge improvements for me:
> Load files with...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
July 14, 2011 at 10:16 am
Right...but what is the result of the query I posted on your instance?
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
July 13, 2011 at 5:07 pm
AlexSQLForums (7/13/2011)
Read This:http://support.microsoft.com/kb/918760http://support.microsoft.com/kb/918760
This article refers to packages that will not run at all.
is250sp (7/13/2011)
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
July 13, 2011 at 4:58 pm
Yes. You should start using the SQL Native Client (SQLNCLI10).
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
July 13, 2011 at 4:33 pm
What specific version of SQL Server are you using?
SELECT 'ProductVersion', SERVERPROPERTY('ProductVersion')
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
July 13, 2011 at 4:25 pm
@suri.yalamanchili, please consider using a Dynamic Cross Tab query instead of building a query with the PIVOT operator:
Cross Tabs and Pivots, Part 2 - Dynamic Cross Tabs[/url]
The article above is...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
July 13, 2011 at 4:15 pm
bagofbirds-767347 (7/13/2011)
correct sytax would be
use [dbname]
GO
exec [procname]
but i also think lowell's syntax works.
let use know when and...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
July 13, 2011 at 4:04 pm
Try three-part naming to reference your stored proc instead of USE. You may also have had an issue because you were not surrounding @tableName with single quotes in your proc...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
July 13, 2011 at 3:53 pm
MysteryJimbo (7/13/2011)
opc.three (7/13/2011)
MysteryJimbo (7/13/2011)
It is actually 32767 concurrent and running connections as its based on an smallint value but...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
July 13, 2011 at 3:37 pm
Here is the T-SQL command to change it to Mixed:
USE [master]
GO
EXEC xp_instance_regwrite
N'HKEY_LOCAL_MACHINE',
N'Software\Microsoft\MSSQLServer\MSSQLServer',
N'LoginMode',
REG_DWORD,
...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
July 13, 2011 at 1:36 pm
when doing it in T-SQL it is faster to loop through each row to get the XML than to include the NTEXT (Xml) column in the original query.
I could see...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
July 13, 2011 at 1:01 pm
walia_jagwinder (7/13/2011)
is the 32767 users can login to sql server?
What does this return on your server?
SELECT @@MAX_CONNECTIONS ;
You can also use this:
EXEC sys.sp_configure
@configname = 'user...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
July 13, 2011 at 10:54 am
MysteryJimbo (7/13/2011)
It is actually 32767 concurrent and running connections as its based on an smallint value but is generally...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
July 13, 2011 at 10:53 am
Viewing 15 posts - 5,521 through 5,535 (of 7,164 total)