Viewing 15 posts - 5,326 through 5,340 (of 6,400 total)
wrap the dates in a convert/cast function using a format code
eg
CONVERT(DATE,MAX(DATE),103)
CAST(MAX(DATE),DATE,103)
April 4, 2012 at 5:03 am
Might need a bit of work to get it to how you want it, but the basis is the same
DECLARE @sql NVARCHAR(MAX)
SELECT @sql = REPLACE(
CAST(
(
SELECT 'USE ' + QUOTENAME(name) +';'...
April 4, 2012 at 4:53 am
you will need business intelligence development studio installing on your machine to develop the RDL files, this can be installed via the SQL media if not already done so
April 4, 2012 at 4:49 am
you will need to create an expression on the remote path something like the following, changing it to suit your needs
(DT_WSTR, 4) YEAR( GETDATE() ) + right("0" +...
April 4, 2012 at 4:47 am
yes it is possible as permissions are cumulative.
as you already know the groups to which the user has access too, check that these groups cannot delete data. Also they...
April 4, 2012 at 3:57 am
the leaf node is the bottom level of the tree which is the data pages, unless you mean something else?
April 4, 2012 at 3:16 am
changes the table to a heap
queries will cause table scans
non clustered indexes will cause a lookup scan
as it has to look through all of the data pages to find the...
April 4, 2012 at 2:39 am
please do not cross post
all replies here please
April 4, 2012 at 2:37 am
what is the reasoning behing dropping the clustered index?
April 4, 2012 at 2:33 am
you will need to build an expression in the ordering of the tablix based on the parameter values
something like
=IIF(Param!Item1.Value=True, Item1, IIF(Param!Item2.Value = True, Item2..............) untill all possible combinations of...
April 4, 2012 at 1:43 am
would also have to build in a call to UPDATE() as well to ensure that it only fires on the update of a specific column
CREATE TRIGGER trigger
ON Schema.Table
AFTER UPDATE
AS
IF (UPDATE...
April 3, 2012 at 8:23 am
well you learn something new every day, I didnt think this was possible
April 3, 2012 at 6:43 am
nope, you will need to fully reinitialise logshipping from scratch with a new full backup for the changes to take effect, you cant do this (below) as you cannot modify...
April 3, 2012 at 5:48 am
Viewing 15 posts - 5,326 through 5,340 (of 6,400 total)