Viewing 15 posts - 586 through 600 (of 1,957 total)
Depending on your exact requirements (I haven't looked at your Word document, I don't trust them - sorry) you might consider having one table for each option and just change...
January 14, 2014 at 5:39 pm
Do you have any "Addins" installed either in Visual Studio or SSMS? (Not naming specific ones, just wondering if it is something we can eliminate by disabling them)
I have had...
January 14, 2014 at 4:39 pm
tacy.highland (1/14/2014)
January 14, 2014 at 4:31 pm
Luis Cazares (1/10/2014)
mister.magoo (1/10/2014)
or this, which I personally find more "readable", but that's probably just me...
, (select max(moddate) from (values(P.ModifiedDate),(PD.ModifiedDate),(PA.ModifiedDate)) a(moddate)) AS ModifiedDate
, (select max(credate) from (values(P.CreatedDate),(PD.CreatedDate),(PA.CreatedDate)) a(credate)) AS CreatedDate
That's...
January 11, 2014 at 3:47 pm
or this, which I personally find more "readable", but that's probably just me...
, (select max(moddate) from (values(P.ModifiedDate),(PD.ModifiedDate),(PA.ModifiedDate)) a(moddate)) AS ModifiedDate
, (select max(credate) from (values(P.CreatedDate),(PD.CreatedDate),(PA.CreatedDate)) a(credate)) AS CreatedDate
January 10, 2014 at 11:50 am
Did you notice any difference in the connection settings (e.g. SET ANSI_NULLS etc.?) when you traced the problem?
January 8, 2014 at 5:47 pm
Are there any triggers coming into play, maybe auditing the user?
January 8, 2014 at 4:43 pm
Tara-1044200 (1/8/2014)
January 8, 2014 at 4:17 pm
I'm also failing to see the point of this trigger.
If I insert a row you copy it to your audit.
If I update the row you copy the new row to...
January 8, 2014 at 4:11 pm
Yes, but you are going to keep finding these little annoyances working with XML data types in SQL.
I would highly recommend doing this sort of processing in .Net or...
January 8, 2014 at 3:53 pm
http://technet.microsoft.com/en-us/library/ms177607.aspx
It is just a declaration of the namespace. Nothing to do with tables, loops or ctes.
January 8, 2014 at 10:02 am
When the namespace in the xml is the default namespace as in yours (there is no :prefix in the declaration), then all elements are part of that default namespace and...
January 7, 2014 at 6:11 pm
Have a read of this http://technet.microsoft.com/en-us/library/ms188285(v=sql.105).aspx
and this http://www.sqlservercentral.com/Forums/Topic1012487-361-1.aspx
I would personally go with just storing the raw xml in the logging table.
January 6, 2014 at 5:27 pm
I'm not sure exactly what your question is, but will take a shot in the dark.
When you log in to an FTP server, it has the concept of a "home"...
January 6, 2014 at 5:17 pm
defyant_2004 (1/6/2014)
January 6, 2014 at 5:08 pm
Viewing 15 posts - 586 through 600 (of 1,957 total)