Viewing 15 posts - 7,561 through 7,575 (of 13,460 total)
Don't Panic: MERGE is just a fancy way to do what you've already done a zillion times:, but as separate steps...INSERT new rows, UPDATE matching rows, DELETE rows that were...
Lowell
May 17, 2011 at 6:07 am
martynjreid (5/16/2011)
Welsh Corgi (5/16/2011)
What time constraints are you looking at?The ETL process takes anywhere from 30 mins to 8 hrs dependant on hardware and size of the source database.
dumb question...
Lowell
May 16, 2011 at 4:41 pm
for me the big question is the number of rows moved;
when your procedure was running once a day, what did it do? MERGE statement? drop and recreate the data?...
Lowell
May 16, 2011 at 3:06 pm
is an error returned, or just no data?
check the schema of the underlying objects inside the view;
for example, lets say dbo.View1 & 3 are accessing items under the same schema,...
Lowell
May 13, 2011 at 11:47 am
browsers ignore whitespace...tabs, CrLf and more than one space in a row; that's part of the html definition
if you need to visualize whitespace, you'll need to html-ize the results...either by...
Lowell
May 13, 2011 at 6:22 am
how about adding a column to your records to have an opt out date and optional reason in the database row for the emails; then when select FROM YourTable where...
Lowell
May 12, 2011 at 7:53 pm
it's syntax: remove the word "SELECT" just before EXEC;
looks like an artifact from trimming the code.
Lowell
May 12, 2011 at 11:42 am
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...
Lowell
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...
Lowell
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
Lowell
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...
Lowell
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...
Lowell
May 12, 2011 at 11:00 am
HowardW (5/12/2011)
We can't tell you...
Lowell
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...
Lowell
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...
Lowell
May 12, 2011 at 4:29 am
Viewing 15 posts - 7,561 through 7,575 (of 13,460 total)