Viewing 15 posts - 1,426 through 1,440 (of 13,445 total)
if they need access up to the last second, i'd do this, but it takes twice as much disk space:
restore the production copy to the ReportServer as a different name....
October 12, 2015 at 6:06 am
rajemessage 14195 (10/10/2015)
some times i need to take db in single user mode , which can be done
using following
use master
go
alter database db_name set single_user with...
October 11, 2015 at 9:16 am
SQLPain (10/7/2015)
I have added linked Server S with report server. Can you please give an example of what would be considered as a fully qualified code.
Also when I write the...
October 7, 2015 at 9:09 am
since it sounds like you don't wantto remove permissions, but to prevent it from running with all default parameters?
can you modify the stored proc itself?
that's the low hanging fruit,...
October 6, 2015 at 11:08 am
maynardsammons (10/6/2015)
Thanks for the input!Service account used by SQL Server Agent has the same permissions that my personal account has, as far as I can tell.
is the destination a network...
October 6, 2015 at 6:40 am
mahi123 (10/6/2015)
Thank you for yours respond , but my tempdb data file is already unrestricted growth only
then you are out of disk space on the drive? you might need to...
October 6, 2015 at 5:40 am
you'll want to uninstall, and then reinstall, two separate steps, sorry.
there's no way to convert a named instance to a default, nor is there a way to rename it(ie from...
October 5, 2015 at 1:38 pm
agreed. they added code that insta-deletes anything Celko posts(thank you for that!), so they can reuse that same code, and just add something that detects the new user spamming multiple...
October 5, 2015 at 8:13 am
toniothomas (10/2/2015)
http://www.sqlpanda.com/2013/10/how-to-check-index-creation-date.html
SELECT object_name(i.object_id) as TableName, i.object_id, i.name, i.type_desc,o.create_date,o.type,i.is_disabled
FROM...
October 3, 2015 at 8:49 am
RTaylor2208 (10/2/2015)
October 2, 2015 at 6:14 am
i believe the command syntax like this will work as well: i use it for creating tables remotely:
EXEC ('DROP DATABASE [SandBox]') AT MyLinkedServer
October 2, 2015 at 6:06 am
how do you test in SSMS with multi value parameters, then?
it's going to come down to your implementation...can you paste the actual code?
the actual error message? "does not work" is...
October 2, 2015 at 5:26 am
if that's too slow, the next step is a CLR Common Language runtime splitter. that's the fastest i've encountered.
I've personally grabbed this specific code from SimpleTalk[/url] and used it to...
October 1, 2015 at 2:54 pm
mw112009 (10/1/2015)
Can you help me with this then ?
I like to write a query where I pass a name of a table and column and then it will simply...
October 1, 2015 at 2:39 pm
where
(@VendorNumber is null or (hh.vndno = @VendorNumber))
and hh.chkdts = @CheckRunDate
and dd.DPSTF = 'N'
and hd.FILET = 'H'
and cd.EDI835Exclude = 0
and (@CompanyCode IS NULL OR ( cd.CMPCD = @CompanyCode))...
October 1, 2015 at 12:36 pm
Viewing 15 posts - 1,426 through 1,440 (of 13,445 total)