Viewing 15 posts - 106 through 120 (of 271 total)
Execute something like the following and then restart the service
use
master
go
Alter
database tempdb modify file (
June 5, 2006 at 2:14 pm
These are the instructions
http://sourceforge.net/docman/display_doc.php?docid=33453&group_id=168612
hth
David
June 5, 2006 at 10:32 am
I know this doesn't directly answer your problem but you should have a look at this on sourceforge its a webadmin tool for sql server it looks just enetrprise manager and...
June 5, 2006 at 2:33 am
I've taken the approach in my packages that getting the value for and assigning it to the variable is done in one data flow and then I would either create...
June 5, 2006 at 12:03 am
To use the variable in an excute sql task set the sql statement to something like the following
SELECT * FROM HumanResources.Department WHERE DepartmentID = ?
set bypass prepare to true
and then...
June 4, 2006 at 11:00 pm
If it shows as still loading it sounds like you chose to leave the database in non-operational state in the wizard so the database will not have performed the recovery...
June 4, 2006 at 9:50 am
When you restore the database it will try and put the files back into the same location they were in when the database was backed up. What you need to...
June 4, 2006 at 5:58 am
In the start menu go to
Start Menu\Programs\Microsoft SQL Server 2005\Configuration Tools
and open the sql server configuration manager expand the sql server network configuration manager and click on protocols for mssqlserver...
June 4, 2006 at 5:41 am
If you install the dts components in the feature pack then you can maintain existing DTS packages in management studio but you cannot create new ones.
hth
David
May 31, 2006 at 1:35 pm
The example is incorrect in transact sql the syntax would have to be
SELECT USER_NAME() -- Returns Andy
EXECUTE AS USER = 'Brian'
GO
EXECUTE AS USER = 'Steve'
GO
REVERT
GO
SELECT USER_NAME()
The syntax provided would provide a syntax...
May 25, 2006 at 12:47 am
I know that when you use linked server with access that you often have to change the maxlocks per file if you are importing/exporting a lot of data otherwise is...
May 23, 2006 at 4:39 pm
Very bored tonight
If all else fails have a look at these posts and you can bin outlook.
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=187&messageid=133926
This solution works well.
David
May 22, 2006 at 2:33 pm
May 22, 2006 at 2:29 pm
What version of outlook is it?
Outlook 97/98 requires you to leave the outlook open othersise the mail will get stuck in the outbox.
hth
David
May 22, 2006 at 2:23 pm
A clustered index scan is a table scan. If you put a clustered index on a table you will never actually see a table scan.
All that happens is that it goes...
May 22, 2006 at 6:51 am
Viewing 15 posts - 106 through 120 (of 271 total)