Viewing 15 posts - 241 through 255 (of 314 total)
I thought it was a user defined Table Type...
September 30, 2010 at 7:20 am
Rather simple, but BOL is a good source for examples, syntax, etc. Good luck and let us know how it goes 🙂
September 30, 2010 at 7:09 am
What is the total number of records return for the report?
I agree with the above, in that its doubt that your indexing (and maintenance) is setup for the reporting...
September 30, 2010 at 7:08 am
Use the Windows Scheduler to execute a SQLCMD command and point the SQLCMD to .sql file. There are other connection details that SQLCMD will require, but this is how I...
September 30, 2010 at 6:18 am
What is the search criteria for the reports? Are there any joins?
Which column(s) are the indexes on?
I dont see a PK declared is there one?
Is there a clustered index, if...
September 30, 2010 at 5:39 am
Silly question, but has someone put in an upper limit on the amount of memory that SQL can use?
September 29, 2010 at 6:56 am
Where are you looking at the memory consumption? If I remember correctly (maybe wrong, its been a while :)), with the AWE switches, Task Manager does not report the correct...
September 29, 2010 at 5:50 am
CREATE TABLE #table1
(
columns....
)
or
DECLARE @table2 TABLE
(
columns...
)
September 29, 2010 at 4:11 am
SQL is a resource pig, it will grab resources (especially memory) and not let go. If you are running 64bit SQL servers, you will need a minimum of 5GBs of...
September 28, 2010 at 12:56 am
DPM, as in Data Protection Manager from Microsoft?
If so, then I believe you are correct. I used this at a previous place and remember the documentation stating that it...
September 28, 2010 at 12:52 am
You could write a stored procedure that executes the job (using sp_start_job), but you have to specify the execution user (using the EXECUTE AS clause).
September 28, 2010 at 12:50 am
Are you upgrading to 2008R2? If so, from what?
September 28, 2010 at 12:37 am
blurb - ignore me
September 9, 2010 at 3:48 am
PaulB-TheOneAndOnly (6/28/2010)
grahamc (6/28/2010)
June 28, 2010 at 8:11 am
PaulB-TheOneAndOnly (6/27/2010).... if neither calls your attention ain't nothing wrong in remaining a cutting edge really good Senior DBA for the rest of your career.
and there in lies the problem......
June 28, 2010 at 5:09 am
Viewing 15 posts - 241 through 255 (of 314 total)