Viewing 15 posts - 5,521 through 5,535 (of 7,168 total)
This is a hunch as I have not seen this error before. Check the "SQL Server Browser" service to see who the service is logging in as. If it's a...
July 14, 2011 at 11:49 am
From your presentation - hooray!
> easy to diff package format
> relative path references
Koen Verbeeck (7/14/2011)
July 14, 2011 at 11:32 am
yoffes (7/14/2011)
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...
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...
July 14, 2011 at 10:16 am
Right...but what is the result of the query I posted on your instance?
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)
July 13, 2011 at 4:58 pm
Yes. You should start using the SQL Native Client (SQLNCLI10).
July 13, 2011 at 4:33 pm
What specific version of SQL Server are you using?
SELECT 'ProductVersion', SERVERPROPERTY('ProductVersion')
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...
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...
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...
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...
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,
...
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...
July 13, 2011 at 1:01 pm
Viewing 15 posts - 5,521 through 5,535 (of 7,168 total)