Viewing 15 posts - 1 through 15 (of 1,064 total)
When...
August 18, 2017 at 4:33 am
In your format file, you are telling it to delimit column 2 onwards with a Tab character, but the sample data you posted is comma delimited.
February 20, 2017 at 7:21 am
If you rename the view (e.g. from SSMS), sql_modules doesn't get updated, resulting in exactly what you are seeing.
February 1, 2017 at 2:25 am
Doesn't the last bit of the error message give it away? "The text is encrypted"
January 19, 2017 at 4:21 am
I can't really work out how your code produces anything, but I'm not a Powershell expert by any means.
I assume your $server object is an SMO server object that you...
August 26, 2016 at 5:14 am
GilaMonster (8/11/2016)
TomThomson (8/10/2016)
GilaMonster (8/10/2016)
First time in years that I'm flying somewhere just for a vacation, no conferences involved. Scotland, to save anyone from wondering.
Any particular place in Scotland? ...
August 12, 2016 at 8:06 am
Gary Varga (8/10/2016)
BTW As for comments like:Who knows what temporary workers might do with information they can gather
This is an unfounded generalisation, is it not?
Absolutely not... all contractors are scumbags......
August 10, 2016 at 7:51 am
More questions than answers, I'm afraid, but...
Taking your example of the driving licence, why wouldn't the scan of the driving licence just be an attribute of the person_driving_licence table?
I...
August 4, 2016 at 7:38 am
With no data or test script to work with, my guess would be that this part of the query
nashpats (7/22/2016)
...
July 22, 2016 at 3:52 am
The 2 queries are not equivalent. For example, you have included this join in the new code,
INNER JOIN BusIdentity bi ON tp.busIdentityId = bi.Id
but I can see no such relationship...
May 10, 2016 at 1:50 am
The replacement script you posted doesn't have a left join. Does this work?
INSERT #operator_new (operatorCode, storeId, personId, storeCode, password, name, mnemonic, accessGroup,active, loggedOn, language, country, dialect, changePassword, isInShift)
...
May 9, 2016 at 4:34 am
I suspect this line is your problem
AND timePeriod.personId =* person.id
You need to make the join to timePeriod a LEFT JOIN
May 9, 2016 at 2:57 am
One sheet short of a bog roll...
April 25, 2016 at 7:27 am
I'm with you with regard hating XML, but does this do what you want:-
DECLARE @input XML = '<TaxAudit xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Year>20152016</Year>
<AccountNumber>1234567890</AccountNumber>
<CertificateRequested>true</CertificateRequested>
</TaxAudit>'
SELECT
NodeName = C.value('local-name(.)',...
April 19, 2016 at 4:54 am
Without the extra detail that the others have requested, your problem is down to guesswork on our part.
That said, this line rings some alarms bells with me:
SELECT DISTINCT @Table =...
March 23, 2016 at 8:32 am
Viewing 15 posts - 1 through 15 (of 1,064 total)