Viewing 15 posts - 6,226 through 6,240 (of 7,168 total)
Good one Jim! Is this headed for one of those "It depends on what your definition of 'is' is." conversations? I should know better on a site full of DB...
June 6, 2011 at 6:11 pm
Please re-read my post. SSMS will help you.
June 6, 2011 at 4:54 pm
seth delconte (6/6/2011)
Nice avatar 🙂
Awesome 😎
June 6, 2011 at 3:29 pm
Possible values for Edition property:
http://msdn.microsoft.com/en-us/library/ms174396.aspx
Express Editions:
> 'Express Edition'
> 'Express Edition with Advanced Services'
MSDE:
> 'Desktop Engine' (Not available for SQL Server 2005 and later versions.)
June 6, 2011 at 3:22 pm
Red flags everywhere :exclamation:
It sounds like you're headed into dynamic-sql-hell :sick:
Are you confident in your design? If not, if you want to share a bit more about what you're trying...
June 6, 2011 at 3:08 pm
My solution makes use of a Tally table. If you're unfamiliar with those please have a look through this article: http://www.sqlservercentral.com/articles/T-SQL/62867/%5B/url%5D
Build Tally table:
--=============================================================================
-- Setup
--=============================================================================
USE tempdb...
June 6, 2011 at 2:57 pm
Yikes! Risky assignment.
It does not appear that the product itself requires the .NET Framework, but the Installer does :hehe:
http://technet.microsoft.com/en-us/library/ms143506(SQL.90).aspx
That said, if you're using SQLCLR you may have issues if you...
June 6, 2011 at 1:34 pm
If you're ditching SQLDMO you might as well ditch VB Script as well and move to PowerShell. There are tons of examples online of scripting out DB objects using PowerShell...
June 6, 2011 at 1:17 pm
You can use the LIKE operator on the results of an XQuery value() function.
Modified Example B from http://msdn.microsoft.com/en-us/library/ms178030.aspx
USE AdventureWorks
GO
SELECT CatalogDescription.value('
declare namespace PD="http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/ProductModelDescription";
...
June 6, 2011 at 1:10 pm
SSIS does not work like that.
You'll need to pull the SQL Server data into an SSIS recordset, iterate over it and issue an update in Sybase for each row.
Or...
June 6, 2011 at 12:56 pm
Direct from Kevin Cox (on Microsoft SQLCAT Team) in a "What's new in SQL 'Denali'?" presentation HTTP endpoints were pulled from the SQL Server product almost as a direct result...
June 6, 2011 at 12:40 pm
Just a stab in the dark:
MySQL requires that each login be associated with an IP address or range. Is your server coming from an IP that is in the range...
June 6, 2011 at 11:46 am
Ninja's_RGR'us (6/6/2011)
Nope I don't have that UDF.
USE msdb
GO
IF EXISTS ( SELECT *
FROM sys.objects
...
June 6, 2011 at 11:07 am
+1 from me too
I agree that you have chosen a good starting point.
Pros:
> You'll get type-safety out of your PropertyType-specific tables
Cons:
> You will avoid the trap of creating one...
June 6, 2011 at 11:02 am
Viewing 15 posts - 6,226 through 6,240 (of 7,168 total)