Viewing 15 posts - 8,566 through 8,580 (of 8,760 total)
fregatepllada (4/17/2014)
I am not quite agree with this statement "SQL Server has no specific functions or methods for validating XML".
How about strongly typed XML...
April 17, 2014 at 3:52 am
Jacob Pressures (4/16/2014)
Customer,
Customer Credit Card,
Credit Card
Order
But a customer can also pay with cash.
Should I have a payment or transaction table which allow null IDs...
April 17, 2014 at 12:31 am
I agree with rVadim that you should probably consider another approach if possible.
Having said this, here an example code for a procedure to drop and create the view:
CREATE PROCEDURE dbo.USP_REFRES_THE_LATEST_VIEW
AS
IF...
April 16, 2014 at 11:48 pm
What about the values passed in the where clause, a typical mistake would be mixing up the two parameters.
π
April 16, 2014 at 11:54 am
dwilliscp (4/16/2014)
But looking at the...
April 16, 2014 at 8:36 am
This should get you started, cannot do this in a view though, in a stored procedure it works fine.
π
USE [tempdb]
GO
CREATE SCHEMA [SCHEMA01] AUTHORIZATION [dbo];
GO
CREATE SCHEMA [SCHEMA02] AUTHORIZATION [dbo];
GO
CREATE SCHEMA [SCHEMA03]...
April 16, 2014 at 5:06 am
Check out this article, Control Flow Task Errors β Level 9 of the Stairway to Integration Services[/url]
π
April 16, 2014 at 4:09 am
Quick question, why the (nolock) hints?
π
April 16, 2014 at 2:57 am
Looks like something has changed, what does this query bring back?
π
SELECT
sc.configuration_id
,sc.name
,sc.value
,sc.minimum
...
April 16, 2014 at 2:45 am
The .ods or OpenDocument Spreadsheet can be opened with Excel 2007 or later, OpenOffice and LibreOffice.
It contains multiple files within a zip file, one way of importing is to rename...
April 14, 2014 at 11:52 pm
FYI: Ran the function through the test script with the same result aggregation as I used for the article.
π
SplitterName ...
April 14, 2014 at 11:33 pm
Here is another way, using ranking
π
WITH CTE_OPT_BASE AS
(
select
ROW_NUMBER() OVER
(
...
April 14, 2014 at 6:14 pm
This should get you started π
DECLARE @REF_DATE DATE = '2014-06-01';
DECLARE @MEM_PAY_DATE TABLE
(
PAYMENT_ID INT NOT NULL
,MEMBER_ID ...
April 14, 2014 at 5:51 pm
The most usual approach is to use one file for each environment, a dev config, a testing config and a production config.
π
April 14, 2014 at 4:35 pm
abhas (4/14/2014)
Hi All,How to update column with multiline coments.
Add "carriage return" and "line feed" characters, see the example
π
SELECT 'THIS IS A COMMENT LINE 1' + CHAR(13) + CHAR(10) + 'THIS...
April 14, 2014 at 3:40 am
Viewing 15 posts - 8,566 through 8,580 (of 8,760 total)