Viewing 15 posts - 7,576 through 7,590 (of 13,469 total)
5) All transactional tables will show who updated the record last and when
if you only have a single userid being used to connect, how will this have any benefit? do...
May 12, 2011 at 11:34 am
euroray (5/12/2011)
I don't get any errors but the email is not being sent. Looks like the EXEC sp_send_dbmail is being skipped. If I use the...
May 12, 2011 at 11:20 am
does this return results/an explanation for unsent mail/failed mail?
SELECT
err.[description],
fail.*
FROM [msdb].[dbo].[sysmail_event_log] err
inner join [msdb].[dbo].[sysmail_faileditems] fail
ON err.mailitem_id = fail.mailitem_id
May 12, 2011 at 11:07 am
you cannot use 32 bit drivers on a 64 bit instance; the JET drivers are 32 bit, so you'll have to download the ACE drivers from microsoft instead;
i had a...
May 12, 2011 at 11:05 am
Janet first do SELECT * FROM sys.servers
are you sure the servername is [LINKEDSERVERNAME]?
next, after you see the server name, do this:
EXEC sp_tables_ex MyLinkedServer
that should give you the lsit of tables...
May 12, 2011 at 11:00 am
HowardW (5/12/2011)
We can't tell you...
May 12, 2011 at 6:13 am
dilipd006 (5/12/2011)
thnks for the replyobviously i created the login first and then created the user
Still this error is coming
you said when you are trying to use the user test....
are...
May 12, 2011 at 4:52 am
Login failed for user 'pradeep1'.
the above error has to do with no login in the server for that user;
that's a different issue, not related to the user/role you created...
only...
May 12, 2011 at 4:29 am
seshukumar.thokala (5/12/2011)
I tried ur example wt u posted but my problem is in my database i am having data like 30.6.1 so how to...
May 12, 2011 at 4:09 am
Sergiy (5/11/2011)
Lowell (5/11/2011)
it ooks like the desired sorting is "strip non numeric chars and order by the numeric portion(if it exists) then by the string"
Your assumption is onviously wrong.
Look at...
May 12, 2011 at 3:54 am
it's the left join that is confusing you.
in the first query, the left table has all rows, and matching records from the second table get joined.
after that, you are filtering...
May 11, 2011 at 6:14 pm
you should avoid(actually...i say never) trying to move data to another database or another server from within a trigger; the trigger could fail and rollback if the database/network/latency issues arise....
May 11, 2011 at 6:09 pm
slash-r is for the RETURN of CrLf, very typical from unix/linux-sourced files: slash-n is CrLf, which you were already aware.
vbCrLf = CHAR(13) + CHAR(10) = \n
vbCr = CHAR(13)...
May 11, 2011 at 6:03 pm
Aaron you want to change it a little so your lookup tables get populated by a SELECT featuring the DISTINCT clause:
----INSERT INTO WorldTable using Select
INSERT INTO World (Description)
SELECT DISTINCT World
FROM...
May 11, 2011 at 5:58 pm
my only suggestion is going to echo Mike; show us what you have so far; if the columns are variable length, I'd end up writing a program instead of trying...
May 11, 2011 at 10:50 am
Viewing 15 posts - 7,576 through 7,590 (of 13,469 total)