Viewing 15 posts - 3,826 through 3,840 (of 8,753 total)
Ed Wagner (3/12/2016)
Eirikur Eiriksson (3/11/2016)
TheSQLGuru (3/11/2016)
Someone needs to benchmark the STRING_SPLIT() function coming out in SQL Server 2016 and update the main article!
Very quick on Azure, only caveat...
March 13, 2016 at 1:00 am
Brandie Tarvin (3/11/2016)
What a wonderful day in the upgrade-hood...Sigh.
So many SSIS packages to upgrade. So. Many. PACKAGES! :crazy:
Baggages?
๐
March 12, 2016 at 11:27 am
Can you please post the DDL (create script for the tables), sample data as insert script and the expected results?
๐
March 12, 2016 at 6:16 am
TheSQLGuru (3/11/2016)
Someone needs to benchmark the STRING_SPLIT() function coming out in SQL Server 2016 and update the main article!
Very quick on Azure, only caveat is that it simply...
March 11, 2016 at 11:46 pm
TomThomson (3/10/2016)
Steve Jones - SSC Editor (3/10/2016)
Data Driven going on now: https://www.microsoft.com/en-us/server-cloud/data-driven.aspx
Quite interesting. Some of it extremely expressive. Certainly backs up what Gartner recently said...
March 10, 2016 at 12:42 pm
SQL!$@w$0ME (3/9/2016)
March 9, 2016 at 9:36 am
SQL!$@w$0ME (3/9/2016)
Users are still able to insert an invalid date/user in the Audit columns with default constraints. What is the best way to avoid this.Thanks!
Trigger
๐
March 9, 2016 at 8:59 am
Eschergoedel (3/8/2016)
March 9, 2016 at 1:31 am
SQL!$@w$0ME (3/8/2016)
Which is the best practice to implement in audit columns for create datetime and create user, INSERT trigger or default constraints?Thanks!
The default constraint will only mark the date/time of...
March 8, 2016 at 10:29 pm
astrid 69000 (3/8/2016)
ohhhhh :ermm: :ermm: :ermm:no I didn't....
now I feel embarrassed :w00t:
thanks! I love learning new things ๐
You are very welcome.
๐
March 8, 2016 at 1:10 am
This should get you passed this hurdle
๐
USE tempdb;
GO
SET NOCOUNT ON;
DECLARE @TXML XML = '<Document>
<xs:schema elementFormDefault="qualified" targetNamespace="http://www.dummy.com/Export" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" xmlns:mstns="http://www.dummy.com/Export" xmlns="http://www.dummy.com/Export" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element msdata:IsDataSet="true" name="Document">
<xs:complexType>
...
March 8, 2016 at 12:54 am
Could you please provide DDL (create table), sample data (as insert script) and expected output from that sample?
๐
March 8, 2016 at 12:43 am
astrid 69000 (3/7/2016)
March 8, 2016 at 12:39 am
astrid 69000 (3/7/2016)
I need to make a table with columns that contain the values of each one.
and the source is a table...
March 7, 2016 at 5:31 am
BEGIN and END are your friends:-D
๐
if (select count(0) from CGL) = 0
BEGIN
dbcc checkident ('CGL', RESEED, 0)
END
else
BEGIN
declare @lastc int
select...
March 7, 2016 at 4:21 am
Viewing 15 posts - 3,826 through 3,840 (of 8,753 total)