Viewing 15 posts - 4,606 through 4,620 (of 13,465 total)
Monitoring can be a wide subject, sicne there is a lot of different things you might want to review.
redgate, the website sponsor/owner, provides some free reports you can add to...
October 12, 2012 at 5:30 am
probably what you are asking, is, if you have multiple email accounts, how do i change which one is used for the default email profiles?
IN SQL Server Management Studio, int...
October 11, 2012 at 2:27 pm
well, it's possible... you can do it with a wHILE loop, i guess.
something like this seems to be what you are asking for, maybe?
DECLARE @rowcount int
SET @rowcount = 1
WHILE @rowcount...
October 11, 2012 at 2:18 pm
have you looked into SSRS Data Driven Subscriptions, I'm pretty sure that's exactly what you are after, so that there is no user interaction required to create teh reports...so you...
October 11, 2012 at 1:53 pm
tripri (10/11/2012)
So from that i'm looking for some record 'abc dfgr hjk kishg lZDjsdf...
October 11, 2012 at 12:21 pm
ok SELECT OBJECT_NAME(437576597) will tell you the table that is having the problem.
since it says index(0) and index(2) on that object, we know the table is a Heap, and...
October 11, 2012 at 10:26 am
run this command in SSMS, and post the entire results back here.
the database in question is VertexProd, right?
DBCC CHECKDB('VertexProd') WITH NO_INFOMSGS, ALL_ERRORMSGS
October 11, 2012 at 10:11 am
yeah the second half of the issue is tough; you can stick the descriptive data in a relationsship witht eh columns/tables, etc with extended properties(sys.sp_addextendedproperty and fn_listextendedproperty), but that also...
October 11, 2012 at 9:17 am
if the OP can identify how he knows the "same record" already exists, it would be something like this
CREATE trigger Del_records on Active_Table
AFTER insert
as
delete from Active_Table a
INNER JOIN...
October 11, 2012 at 9:04 am
I had to do that a lot previously.
keep the table you import into, but create a view with column names that better describe the purpose of the columns;
even better, the...
October 11, 2012 at 8:54 am
this thread has a very similar issue:
too strong of permissiosn were granted, but the DENY command doesn't have the level of granularity to take away things like ALTER TABLE
this example...
October 11, 2012 at 8:40 am
come on, you should know this.
html does not respect whitespace!
find and replace char(13)(char10) with <br />, and isnert <br /> wherever else you want new lines to appear.
sanmon_11 (10/10/2012)
Now...
October 10, 2012 at 4:21 pm
if a table will do the trick, why not create and then drop a permanent table in master or msdb to hold the script you are generating for a ##globaltemp...
October 10, 2012 at 3:07 pm
change your query to select distinct email, notes.
when you merge them with FOR XML, you often have duplicates.
October 10, 2012 at 2:35 pm
should be very easy.
Start The Task Manager.
make sure you check the "show processes from all users' checkbox.
order by name or cpu to find the offending service.
right click onthe process in...
October 10, 2012 at 2:28 pm
Viewing 15 posts - 4,606 through 4,620 (of 13,465 total)