Viewing 15 posts - 3,376 through 3,390 (of 13,469 total)
we have office365, so i just setup and tested a dbmail using it;
here's the scripted results, which will probably help you a lot:
i was in a rush, and named both...
May 30, 2013 at 12:34 pm
in my shop, it would mean grabbing another backup of the "production" database and restoring it over the top of the Test Database that the developers and QA groups use...
May 30, 2013 at 9:40 am
i think it's the +90 INSIDE the datediff: '20130401' + 90 probably turns into either 20130491 or '2013040190', either of which are not valid datetimes.
maybe like this?
select *, '20'...
May 30, 2013 at 8:26 am
most likely permissions,
if you right click on that specific folder, and go to the security tab, you can see everyone who has permissions.

* Note that NT Authority\Network Service DOES NOT...
May 30, 2013 at 7:51 am
shew (5/30/2013)
[Background information]
I have a user who is convinced that his third party application is losing connection to SQL Server from a given app server (and the app will not...
May 30, 2013 at 6:11 am
kish DDL for a table would look more like this, having the compelte datatypes:
what you posted cannot be copied and pasted into SSMS, na dwouldn't help us build a...
May 30, 2013 at 5:57 am
shew (5/30/2013)
May 30, 2013 at 5:51 am
any chance there is a DDL server trigger or extended event doing it?
i've got examples of adding roles to a database automatically if they do not exist,whenever the a...
May 30, 2013 at 5:46 am
there's also several "portable" GUI equivilents of SSMS that would not require an installation;
the one that i keep on my PortableApps is LinqPad http://www.linqpad.net/?
not sure if that is an option...
May 30, 2013 at 5:30 am
if you are going to put the whole path for the executable, i'd suggest actually putting the full name of the executable and also the path to the package; you...
May 30, 2013 at 5:21 am
wow great job providing the setup;
my attempt is adding a rownumber ot partiton by two columns, and joining the results;
does this give you what you were after?
DECLARE @numbers TABLE (number...
May 29, 2013 at 1:29 pm
here;s an example, with 0000 thru ZZZZ as the min/max values:
the first just generates example,s the second makes a calculated column based on the identity value of a table:
SELECT POWER(36,4)...
May 29, 2013 at 12:52 pm
the other option, instead of EXECUTE AS, is to GRANT INSERT ON AuditDatabase.dbo.LogonHist to PUBLIC;
then every user would technically have rights to the table so the trigger can isnert into...
May 29, 2013 at 10:24 am
well if you want to do it via TSQL, look at my script contribution from a while ago;
a couple of procedure sp_GetDDL and sp_getDDLa which scripts any object:...
May 29, 2013 at 10:21 am
not sure what you mean;two different files would require two calls to bcp.
you can call If the startup account for SQL Server is a domain account, you could use a...
May 28, 2013 at 10:20 am
Viewing 15 posts - 3,376 through 3,390 (of 13,469 total)