Viewing 15 posts - 1,966 through 1,980 (of 13,469 total)
i don't think you'll find an existing product that does EXACTLY what you are after, but it's a trivial request to do via TSQL.
there's a zillion examples of random strings...
February 23, 2015 at 5:40 am
can you use a script task to grab a COPY of the file to stick in %temp%, and toggle it's attributes to not be readonly? i had to do something...
February 23, 2015 at 5:28 am
In that case, if both iis and sql are blocked, its probably te wi dows firewall. Add two differen exceptio s, one for port 1433 and another for port 80...
February 21, 2015 at 10:50 am
SQL express, by default, does not allow remote connections, you very likely need to change that, and also go to SQL configuration and enable TCP-IP


February 20, 2015 at 2:53 pm
empty string converts to an int without an error, and it's value is zero. it has to do with the precidence of implicit conversions
you could use the NULLIF function to...
February 20, 2015 at 11:55 am
ok technically it's possible, but not practical to consume later.
you can use a sql_variant, which allows individual values to hold their datatype...one field can be an int, and another...
February 20, 2015 at 11:28 am
in my snippets, where i have some mySQL linked server example,s the database and schema are left blank for a typical user.
Once you have the Linked Server in place I...
February 20, 2015 at 11:20 am
i would custom cursor for specific databases, sicne you wouldn't deploy to model/master/ReportServer etc.
it's actually a specific list, or some sort of pattern right?(all databases with 'APP_' or something like...
February 20, 2015 at 9:13 am
Jason running this specific example on my local machine, as well as on another server, this worked correctly for me:
it has to run locally, since it's effectively calling a command...
February 20, 2015 at 7:17 am
rocky_498 (2/19/2015)
I just want to download only where email is abc@hello.com (as an example) and download the attachment on network drive folder.Is there any third party software doing this ?
from...
February 19, 2015 at 3:01 pm
wow neat question.
i head to search this, and this link seems to say if you create an extended event session watching rpc_completed, it';s all available:
http://dba.stackexchange.com/questions/50122/collecting-parameter-values-from-extended-event-session
February 19, 2015 at 1:57 pm
dynamic sql and and a serverprooperty might help, but how do you KNOW the user test already exists ont he local machine? why cna't you just add a domain\test instead...
February 19, 2015 at 1:29 pm
jason i only did this once, and it was a two or more years ago, for a 2005 instance.
there's away to backup the key via powershell, and avoid the gui...
February 19, 2015 at 1:24 pm
if your email server supports a standard POP3/SMTP interface, it's possible, but complicated code, since it would involve c#/vb.net code in a script task, and of course requires a lot...
February 19, 2015 at 12:04 pm
well that's a design issue you have to think about.
in my case, our app user doesn't have access to the certificate.
the sql user we created has db_datareader, db_datawriter, and...
February 19, 2015 at 9:53 am
Viewing 15 posts - 1,966 through 1,980 (of 13,469 total)