Viewing 15 posts - 1,456 through 1,470 (of 13,469 total)
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
as i remember it, oracle doesn't auto cast strings to date nicely the way SQL Server does. you have to use the TO_DATE(' '2015-09-30 13:13:09.73688','YYYY-MM-DD HH:MI:SS') i think would work.
October 1, 2015 at 9:31 am
jxj363 (9/29/2015)
September 30, 2015 at 6:21 am
DECLARE @ObjectName sysname = 'UsedInView'
SELECT
SCHEMA_NAME(so.SCHEMA_ID) AS SchemaName,
so.name AS ObjectName,
so.type_desc,
sed.referenced_server_name,
...
September 28, 2015 at 6:58 am
basically, yes. you might be able to create a procedure featuring execute as owner,a nd grant an end user permissions to that, but thye cannot run dbcc themselves.
here's an older...
September 28, 2015 at 5:27 am
savani.mahesh (9/28/2015)
Create SQL-CLR procedure.Encrypt your .net assembly.
Your procedure is sealed. No one can view contents of it.
actually, the dll is uploaded into the database, and can be extracted to disk,...
September 28, 2015 at 5:18 am
my quick proof of concept looks like it would work:
i just grabbed an Ms template, saved it, and started combing through the raw text.

September 25, 2015 at 12:16 pm
Viewing 15 posts - 1,456 through 1,470 (of 13,469 total)