Viewing 15 posts - 4,096 through 4,110 (of 13,462 total)
when you read the same report in gmail, if you "View Source" for the rendered report, can you confirm that it has now been manipulated/changed from what you actually created...
January 24, 2013 at 11:14 am
i thought it was clear: i read it as howard saying there is no need to mark an calculated column as persisted in order to index it...it's not a requirement.
simple...
January 24, 2013 at 11:11 am
you want to use the system view sys.synonyms, instead, which has everything you need:
select * from sys.synonyms
--rebuilding the command:
select
'CREATE SYNONYM '
+ quotename(SCHEMA_NAME(schema_id))
+'.'
...
January 24, 2013 at 5:29 am
it's certainly possible, but I'm not sure if you can integrate it into Reporting Services:
check out this great article here on SQL Server Central, which has the coding and explanation...
January 23, 2013 at 12:15 pm
i am wondering if you could put an extended event for CREATE_TABLE on the tempdb?
I'll grab one of my sample extended events and try it, but it's just an idea...
January 22, 2013 at 12:38 pm
rynmthw3 (1/22/2013)
What do I have to do to configure SQL Server to not allow any users besides my Login to be able to create tables and database.Thanks
It's the principal of...
January 22, 2013 at 12:32 pm
how are you determining that it is "full"?
my model database is 3.5 Megabytes in size, with three meg for data, and one meg for the log. that's right...one meg.
we just...
January 22, 2013 at 11:23 am
SELECT SPACE(81)
or
SELECT CONVERT(CHAR(81),'')
if you are using a column, and you need to guarantee it's 81 spaces, it's similar:
SELECT CONVERT(CHAR(81),YourColumnName)
will both give you strings you are looking for...
THE LEN() property...
January 22, 2013 at 9:46 am
nope; if the procedure exists in a different database, then the login needs a matching user mapped to it in each of those databases;
that user in the "procedure" database would...
January 22, 2013 at 9:43 am
i have this saved, whcih shows all tables/the filegroup they belong to:
SELECT
objz.[name],
objz.[type],
idxz.[name],
idxz.[index_id],
...
January 22, 2013 at 8:10 am
yep if you are granted execute to a proc, even if you, the caller, are denied permission to the underlying tables, the proc will execute.
is this a real problem for...
January 22, 2013 at 8:04 am
unless the procedure starts with "sp_", i believe it assumes the context of the msdb database, right?
January 22, 2013 at 7:34 am
i had to poke around to find this; it involves editing an xml file:
January 22, 2013 at 4:27 am
db042188 (1/21/2013)
I was...
January 21, 2013 at 9:38 am
as far as I know, the binaries for SQL must be installed on the %systemdrive% (usually the C:\ drive)
that part cannot be changed, but you can easily change / move...
January 21, 2013 at 9:07 am
Viewing 15 posts - 4,096 through 4,110 (of 13,462 total)