Viewing 15 posts - 8,506 through 8,520 (of 8,760 total)
Sean Lange (4/24/2014)
Eirikur Eiriksson (4/24/2014)
How about using the TABLOCK hint?😎
That seems to be dealing with the symptom rather than the cause. 😉
Hints should be used as a last resort. The...
April 24, 2014 at 3:43 pm
Nikku (4/24/2014)
I have created SSIS package which keeps the track of SysSsisLog table into another table. However I want an option to keep loggin ON or OFF through task/package...
April 24, 2014 at 3:13 pm
Run Nat start in cmd and check if the instance you are connecting to is there.
😎
April 24, 2014 at 9:31 am
Luis Cazares (4/24/2014)
You should use a PK (or unique) constraint as well to...
April 24, 2014 at 9:04 am
AllenMWhite (4/24/2014)
Wouldn't you have the same problem in Transact-SQL, though?
Yes of course, that is why I am interested in seeing how PS would handle this. Often had to implement...
April 24, 2014 at 7:12 am
It would be interesting to see the performance of PS when working with sets larger than the 2Gb limits of the XML data type. 😎
April 24, 2014 at 6:57 am
jhinch (4/24/2014)
April 24, 2014 at 5:07 am
SQLCurious (4/24/2014)
April 24, 2014 at 4:32 am
DBA12345 (4/23/2014)
if trauma has atleast 1 then clm2 in table2 would be 1
if infec has atleast 1 then clm2 in table2 would be...
April 24, 2014 at 4:24 am
Hi Matthew,
and thank you for this article.
Few comments, firstly the sp_xml_preparedocument and sp_xml_removedocument have some limitations and quite an overhead, I'm very hesitant recommending / implementing them on a...
April 24, 2014 at 2:51 am
In SSMS table content editor, press CTRL+3 and change the sql statement to select * from table_name, then press CTRL+R.
😎
April 24, 2014 at 1:08 am
twin.devil (4/24/2014)
1) create a custom unique number (like combination of DateTime plus any other Alpha/numeric number)
Something along these lines? (ugly but works) 😎
(121 retains the milliseconds while 126 and 127...
April 24, 2014 at 12:49 am
Confusing Queries (4/23/2014)
I am working on an ASP.net web application which inserts new record into an underlying table. It is actaully a ConfirmationNumber and should be unieque. I have...
April 23, 2014 at 11:50 pm
Here is an example using AdventureWorks2012
😎
USE AdventureWorks2012;
GO
DECLARE @SOH_XML XML;
SELECT @SOH_XML = (
SELECT
SalesOrderID
,RevisionNumber
,OrderDate
,DueDate
,ShipDate
...
April 23, 2014 at 11:42 pm
Viewing 15 posts - 8,506 through 8,520 (of 8,760 total)