Viewing 15 posts - 1,156 through 1,170 (of 13,469 total)
you posted in "working with oracle", so i thought you were using oracle.
if this is SQL server, then you would just stick with dateformats that are universally converted;
you said you...
April 1, 2016 at 9:21 am
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...
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...
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,...
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...
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...
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...
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...
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,...
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,...
March 31, 2016 at 7:38 am
matt 27758 (3/31/2016)
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...
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...
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...
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...
March 24, 2016 at 1:54 pm
Viewing 15 posts - 1,156 through 1,170 (of 13,469 total)