Viewing 15 posts - 5,626 through 5,640 (of 13,468 total)
Just throwing this out there:
I've used xmind for documentation and to help me flesh out a process tree;
it's free and easy to use after you learn a few keyboard shortcuts.
it's...
April 10, 2012 at 8:13 am
there's a good chance the free SQL Express Edition may suite your needs.
the caveat there is you don't get any of the powerful business tools like SSIS, The ability to...
April 10, 2012 at 7:46 am
not sure what exactly you are looking for. it kind of looks like you wnat to test if a table exists?
this code example works, but might not be what you...
April 10, 2012 at 7:22 am
SQLKnowItAll (4/10/2012)
mot256 (4/2/2012)
Thank you very much for this script!+1 Lowell! I knew I would need this some day after reading the post. Today was that day!
lol thanks everyone; every...
April 10, 2012 at 6:54 am
Ajith 42213 (4/10/2012)
How to search Words From row using SQL Query?
a Row has more than one column...if you mean searching all the char/varchar/nchar columns in a given table, the recommended...
April 10, 2012 at 6:23 am
constant strings have to be quoted out i think,
so I'm fairly sure this is the right syntax:
$BackupFiles=get-childItem -name -include "*_"+$NumberOfWeek+"_*"
April 9, 2012 at 12:39 pm
i prefer the extended properties, because they stay with the database they are describing;
that's really the purpose of the extended properties anyway;
it also makes it a lot easier for any...
April 9, 2012 at 9:03 am
you are correct; dynamic SQL is not allowed in a UDF, dynamic SQL limits you to either a procedure or ad-hoc code that will need to be built and executed...
April 9, 2012 at 8:07 am
a person with db_owner permissions has the ability to backup, restore, or even drop their own database, i believe.
that's very easy to test.
April 9, 2012 at 6:08 am
well it sounds like there is a few things going wrong here; is this a CLR trigger or a regular TSQL trigger? a TSQL trigger should not be going to...
April 9, 2012 at 5:32 am
welsh can you go to one of your servers you know you already set up and is working, and use my script to reverse engineer database mail settings?
then you can...
April 7, 2012 at 2:22 pm
i think if you look at the profile, the checkbox for "This server requires a secure connection(SSL) is checked.
the error message says the mail server doesn't support SSL for that...
April 7, 2012 at 1:46 pm
ok based on your table scheme you posted, this correctly builds a string and prints it, listing only columns that CHANGED, along with some hopefully helpful audit information.
I'll leave it...
April 6, 2012 at 2:12 pm
ok, one of the things you'll run into first is permissions to send mail inside the trigger.
EVERY user that can access the table will need to a user in the...
April 6, 2012 at 1:31 pm
how many columns are"critical" that you have to track for changes in the table to be emailed?
It would be pretty easy to modify my example, but i'd like to see...
April 6, 2012 at 1:11 pm
Viewing 15 posts - 5,626 through 5,640 (of 13,468 total)