Viewing 15 posts - 1,156 through 1,170 (of 13,460 total)
Ray Herring (4/1/2016)
andre.quitta (3/31/2016)
[font="Courier New"]Import-Module : The specified module 'ActiveDirectory' was not loaded because no valid module...
Lowell
April 1, 2016 at 8:46 am
pretty sure you have to use oracles TO_DATE function, especially because you are passing a string,and also using UK date formats.
WHERE DateCreated BETWEEN
TO_DATE('01/01/2016 00:00:00','dd/mm/yyyy hh:mi:ss')
AND TO_DATE('31/01/2016 00:00:00','dd/mm/yyyy hh:mi:ss')
the problem...
Lowell
April 1, 2016 at 8:35 am
you'll need to have a separate process save each query to disk on the server, and then the email will not have a query, only attachments.
i currently use a CLR,...
Lowell
April 1, 2016 at 8:27 am
vijay_uitrgpv (4/1/2016)
Do we need to mention every column which is being updated in IF UPDATE statement ?
Is there any way out if any column is updated...
Lowell
April 1, 2016 at 5:53 am
great job posting your code and your work!
The thing about triggers, is that they have a pair of psuedo tables named INSERTED and DELETED.
Thos tables have the before and...
Lowell
April 1, 2016 at 5:14 am
i cannot remember the exact error , it says something about UAC,and it's bit me in the past.
i believe it's because you need to add the user in TWO...
Lowell
March 31, 2016 at 3:13 pm
I think using a pattern like this will work: its saying the first two characters are A-Z, and then anything after that.
Select top 100 RxClaims.prescriberId
from MHPDW.TransferDB.[dbo].[RxClaims] RxClaims
WHERE
RxClaims.prescriberId LIKE...
Lowell
March 31, 2016 at 12:20 pm
yes it does.
i export html from a database, via bcp, and need to use characters that are not going to appear in the data, becuase the classic terminators like CrLf,...
Lowell
March 31, 2016 at 11:24 am
Marek Grzymala (3/31/2016)
At D:\_TEMP\GetActiveDirectoryUsersWithPowerShell\GetActiveDirectoryUsers.ps1:123 char:22
+ $Results = Get-ADUser <<<< -Filter * -Properties * | select -property CanonicalName,sAMAccountName,ou,GivenName,SurName,DisplayName,email,emailaddress,StreetAddress,City,State,PostalCode,HomePhone,MobilePhone,OfficePhon
e,Fax, Company,Organization,Department,Title,Description,Office,...
Lowell
March 31, 2016 at 7:38 am
matt 27758 (3/31/2016)
Lowell
March 31, 2016 at 6:42 am
typically you install the oracle universal installer on the sql server itself, and then configure/copy your tns files , and prove you can connect via typical Oracle tools from the...
Lowell
March 30, 2016 at 12:11 pm
JimiHaze (3/29/2016)
I'm trying to connect from one SQL instance to another SQL instance. For simplicity I will call the server initiating the connection the SOURCE and...
Lowell
March 29, 2016 at 1:46 pm
linked servers are just an ODBC connection, so i'd start by removing the linked server from the equation.
from anyplace on the LAN, or from the server you are adding linked...
Lowell
March 29, 2016 at 1:16 pm
you cannot update a calculated column.
the other thing is your trigger design!
if i see a variable declared in a trigger, i immediately expect it's not designed correctly. you are grabbing...
Lowell
March 24, 2016 at 1:54 pm
bdkdavid (3/24/2016)
SELECT LastName FROM DT5
WHERE CHARINDEX(CHAR(151), LastName) > 0
no results
SELECT LastName FROM DT5
WHERE CHARINDEX(CHAR(150), LastName) > 0
no results
SELECT LastName FROM DT5
...
Lowell
March 24, 2016 at 1:46 pm
Viewing 15 posts - 1,156 through 1,170 (of 13,460 total)