Viewing 15 posts - 166 through 180 (of 2,904 total)
Jeff Moden (2/24/2015)
February 25, 2015 at 1:14 pm
I have seen some high-level DBAs make some interesting career/pay decisions....
One chose to reduce his work days....he worked four days a week. Having the three day weekend every week...
February 20, 2015 at 10:31 am
kevin77 (2/18/2015)
I can just imagine giving a co-worker a fly swatter or something an labeling it...
February 18, 2015 at 10:06 am
It is possible the mismatch isn't due to leading/trailing spaces or the special characters. It might be extra spaces inside the text. For example:
These don't have leading/trailing spaces...
February 12, 2015 at 9:07 am
As I see it, maintenance plans are like a GUI....they get the job done, but you are allowing SQL Server to create the scripts and figure out how to do...
February 12, 2015 at 9:00 am
I'm not sure how much 'contracting' work you will get for just telecommuting. Think of it this way, if you owned a company, would you hire someone you don't...
February 5, 2015 at 7:57 am
First, this site is for Microsoft's SQL Server and while they are similar, MySQL has some differences and one of them is where your issue is. This part is...
January 7, 2015 at 1:46 pm
I missed something in your original post...you are tracing for RPC. Change that to SP:Starting and SP:Completed. Those are for stored procedures.
-SQLBill
January 7, 2015 at 7:55 am
Leave out the database name. I've found that to be an issue and here is the reason....
You need to find out who/what is running proc1 that exists in DB1....
January 6, 2015 at 1:26 pm
While you can't 'mask' the GUI options, there is a possible solution (at least for the CREATE DATABASE part).
Try a Database Trigger....
CREATE TRIGGER tName
ON ALL SERVER
FOR CREATE_DATABASE
AS
<code the criteria>
I've...
January 6, 2015 at 9:37 am
I think for most people who stay employees (myself included) is the "guaranteed income", along with the paid benefits (health coverage, etc).
Consulting can be great, but until you are 'known',...
January 5, 2015 at 9:27 am
schleep (12/31/2014)
What I'm actually after is a T-SQL procedure or function to which I can pass the variable containing the generated code...
I tried a roll-your-own proc...
December 31, 2014 at 12:32 pm
yes. You can create a SQL Server login just for your application to use. You just have to apply the appropriate permissions.
For example:
create myAppLogin
grant it access...
December 31, 2014 at 12:19 pm
If there's no error in your logs, that seems to indicate the connection isn't getting that far.
Are both your coworker and your database server on the same domain?
Did your coworker...
October 16, 2014 at 1:06 pm
Viewing 15 posts - 166 through 180 (of 2,904 total)