Viewing 15 posts - 2,026 through 2,040 (of 7,191 total)
The splitter function is indeed a table-valued function, but that doesn't mean you have to use the results in a table. You can use it in a view if you...
January 13, 2017 at 4:45 am
This will work, but I suspect it's not what you're looking for. So are you going to share the business rules with us, or wait for us to get bored...
January 13, 2017 at 3:12 am
You just need a splitter function. Take a look at this.
John
January 13, 2017 at 3:08 am
January 13, 2017 at 3:01 am
You should always use a universally recognised date format so that your query works in whatever environment you happen to run it. And don't use string manipulations - they're slower...
January 13, 2017 at 2:29 am
Since you posted in a SQL 2012 forum, I assume this doesn't apply to you, but if you have SQL Server 2016 or later, you can use the sys.time_zone_info view.
January 12, 2017 at 7:18 am
I think Perry's right - it's to do with ownership chaining. What results do you get from these two queries?
SELECT
name
,USER_NAME(principal_id) AS SchemaOwner
FROM sys.schemas
January 12, 2017 at 5:52 am
January 12, 2017 at 5:09 am
January 12, 2017 at 4:03 am
January 12, 2017 at 3:26 am
January 12, 2017 at 3:23 am
Given that a query returns a result set, and you're looking for two result sets per server, this isn't really possible. Certainly it isn't easy - you're trying to...
January 11, 2017 at 8:20 am
sayli 5771 (1/10/2017)
I was thinking of directly transfer whole SSQL server 2005 database to our private database. Can it be done? how?
That's going to depend on what your private database...
January 11, 2017 at 3:39 am
I suspect that anyone attempting to answer your "question" would type "SSIS move files" and "SSIS error handling" into their favourite search engine and see what comes back. However,...
January 11, 2017 at 3:02 am
OK, good luck. If your server isn't running any other applications or components such as Reporting Services, I'd consider increasing max server memory to 5 or 6 GB. ...
January 10, 2017 at 9:58 am
Viewing 15 posts - 2,026 through 2,040 (of 7,191 total)