Viewing 15 posts - 6,556 through 6,570 (of 13,874 total)
Wolfmeister (10/10/2016)
October 10, 2016 at 8:07 am
ramireddyjava (10/10/2016)
We are trying to implement global variables in SSIS. for example from development to UAT to production, the database details will be changed so that we need to...
October 10, 2016 at 7:47 am
Lynn Pettis (10/7/2016)
You can also try this:
select
mc.custid,
mc.companyname
from
sales.MyCustomers mc
where
not exists(select 1 from sales.MyOrders mo where mo.custid = mc.custid);
Looks rather similar to my suggestion!...
October 7, 2016 at 2:23 pm
Try this version too:
SELECT custid
, companyname
FROM sales.MyCustomers c
WHERE NOT EXISTS ( SELECT 1
...
October 7, 2016 at 1:47 pm
Run them both in the same batch and check the relative costs.
October 7, 2016 at 1:44 pm
Here's an alternative, though I'm not sure it's any better:
IF OBJECT_ID('tempdb..#Person', 'U') IS NOT NULL
DROP TABLE #Person;
CREATE TABLE #Person
(
PersonID INT
...
October 7, 2016 at 10:46 am
Grant Fritchey (10/7/2016)
October 7, 2016 at 8:44 am
niall5098 (10/7/2016)
HI There,it looks like sql but is actually text
XML, not SQL.
XML is text, but in structured format, with start and end 'tags' around data items.
October 7, 2016 at 8:32 am
niall5098 (10/7/2016)
the column contain a string of data. within that string I will see the following entries:
<new_pmetd_refno>4110</new_pmetd_refno> ...
October 7, 2016 at 8:00 am
niall5098 (10/7/2016)
as the heading suggests I am trying to query a text based audit for specific values then compare them values. For example the column should contain and new_ref_no...
October 7, 2016 at 5:43 am
Jeffery Williams (10/6/2016)
October 6, 2016 at 4:28 pm
psred (10/6/2016)
Is listing a stored procedure in all the text files. But what could be the problem with stored proc.
You have been here long enough to realise that this is...
October 6, 2016 at 1:48 pm
psred (10/6/2016)
Lot of SQL dumps filling C:\ and they are continuous SQLDump####.mdmp and .txt. It SQL 2014 SP1. Any suggestion how to resolve this.
Read the text files, check the errorlog,...
October 6, 2016 at 1:21 pm
Lynn Pettis (10/6/2016)
October 6, 2016 at 12:59 pm
Ed Wagner (10/6/2016)
Sean Lange (10/6/2016)
This may be the funniest thing I have seen in quite some time. You just gotta love 3rd party software.
Yeah, that's a good one. Be...
October 6, 2016 at 11:54 am
Viewing 15 posts - 6,556 through 6,570 (of 13,874 total)