Viewing 15 posts - 8,371 through 8,385 (of 9,641 total)
You could use profiler to create a trace filtering on that tables object_id. Save the trace results to a table and then query looking for when that column is...
July 17, 2008 at 8:09 am
Because I have not had to work on VLDB's and restores never took more than about 15 minutes I always did full backups and restores.
You might want to look into...
July 17, 2008 at 8:04 am
meichner (7/17/2008)
July 17, 2008 at 7:59 am
benlatham (7/17/2008)
Does anyone know how I would include a hyperlink on a drillthrough report for the user to navigate back to the original report? I want to duplicate the...
July 17, 2008 at 7:50 am
I'm not sure this is a definitive answer, but I would venture to guess that it does not include trailing spaces because in fixed length character columns SQL Server pads...
July 17, 2008 at 7:48 am
NuJoizey (7/17/2008)
hey, thanks so much for your response, this got me a step closer - Disabling anonymous does indeed solve the immediate problem of my app not seeming to...
July 17, 2008 at 7:42 am
If you are using SQL Express with Advanced Data Services to develop your reports you are developing your reports in the SQL 2005 format which is different than the SQL...
July 17, 2008 at 7:38 am
Pragmatic Works has a free custom SSIS component called File Properties Task where you can pass the file path variable obtained in the for each loop and one of the...
July 17, 2008 at 7:33 am
The syntax is:
Grant View Definition on [object] to [role]
or for a schema (will give rights to every object in the schema):
GRANT VIEW DEFINITION ON SCHEMA::[schema_name] TO [role]
July 17, 2008 at 7:14 am
Lester has a good solution. A key point is to remember to use the INFORMATION_SCHEMA views as they are an ANSI standard so should not go away in the...
July 17, 2008 at 7:06 am
It won't fail as SSIS does things on a row by row basis so you do not need to have 200GB of storage on the machine where the package is...
July 17, 2008 at 7:04 am
Christian Buettner (7/16/2008)
This will exclude NULLs an empty strings '' (but not the single space strings '...
July 16, 2008 at 2:53 pm
Jeffrey Williams (7/16/2008)
SELECT dateadd(month, datediff(month, 0, getdate()), 0)
,dateadd(month, datediff(month, -1, getdate()), -1)
,dateadd(month, datediff(month, 0, getdate()) - 1, 0)
,dateadd(month, datediff(month, -1, getdate()) - 1, -1)
,dateadd(month,...
July 16, 2008 at 2:51 pm
By default when you define a Primary Key in SQL Server you get a clustered index on the Primary Key. You can manually make the Primary Key Non-Clustered. ...
July 16, 2008 at 2:47 pm
Here is SQL that will do it, albeit without the variables:
[font="Courier New"]SELECT
DATEADD(DAY, -DAY(GETDATE()) + 1, DATEADD(MONTH, -2, GETDATE())) AS first_day_2_months_ago,
DATEADD(DAY, -DAY(GETDATE()), DATEADD(MONTH, -1, GETDATE())) AS last_day_2_months_ago[/font]
July 16, 2008 at 2:40 pm
Viewing 15 posts - 8,371 through 8,385 (of 9,641 total)