Viewing 15 posts - 8,971 through 8,985 (of 9,399 total)
The job steps execute with the security context of the job owner. However, assigning an owner does not mean that the login has the necessary permissions to run that...
September 12, 2013 at 5:37 am
SQLRNNR (9/11/2013)
crookj (9/11/2013)
Daniel Bowlin (9/11/2013)
Walter WhiteWalter - (Jeff Dunham)
Jalapeno Stick
Spicy food 🙂
September 11, 2013 at 11:22 am
This is probably because most email clients have a true-type font as their default font and you aren't going to get those columns to line up unless you use tab...
September 11, 2013 at 11:19 am
Andreas Wolter-332291 (9/9/2013)
Maybe it's the issue of non-matched SIDs?You can use the proc sp_change_users_login to find out: http://technet.microsoft.com/en-us/library/ms174378.aspx
Now that's a cool procedure. In the years I've worked with SQL...
September 11, 2013 at 11:14 am
A point to consider is that if a trigger is writing out text files, the transaction itself will wait for the file to be created in the file system. ...
September 11, 2013 at 11:02 am
Jack Corbett (9/10/2013)
WayneS (9/10/2013)
SQLRNNR (9/9/2013)
Jack Corbett (9/9/2013)
September 11, 2013 at 10:52 am
Revenant (9/11/2013)
batgirl (9/11/2013)
crookj (9/11/2013)
Daniel Bowlin (9/11/2013)
Walter WhiteWalter - (Jeff Dunham)
Walter Brennan
Stumpy
Grumpy
September 11, 2013 at 10:48 am
I have to agree with Sean - this sounds like a bad idea. Depending on when the trigger fires, you're going to end up with an awful lot of...
September 11, 2013 at 10:34 am
I see from the "create table as" and to "to_char" that you're using Oracle. Sean is exactly right and DISTINCT works essentially the same in Oracle as in SQL...
September 11, 2013 at 8:57 am
Here's another way.
IF OBJECT_ID('ProcedureName', 'P') is not null drop procedure ProcedureName;
September 11, 2013 at 5:55 am
Here's a way you can run a query and write the results to a text file.
EXECUTE master..xp_cmdshell 'bcp "SELECT output_field FROM table_name ORDER BY ID;" queryout "z:\filename.txt" -C RAW -R...
September 11, 2013 at 5:53 am
I actually saw the 11 characters in the last value and answered 0. When I got it wrong and read the explanation, I had to run it because I...
September 11, 2013 at 5:27 am
SQLRNNR (9/10/2013)
Brandie Tarvin (9/10/2013)
I am seriously thinking of making DBCC Timewarp settings one of my own interview questions, just to see how far the SQL Conspiracy has spread. 😀
What are...
September 10, 2013 at 8:55 am
Oracle765 (9/8/2013)
hi therethis just comes up with an error saying incorrect syntax near the keyword from
That's because, as Lynn pointed out, the code is a template. You need to...
September 9, 2013 at 7:13 am
Viewing 15 posts - 8,971 through 8,985 (of 9,399 total)