Viewing 15 posts - 91 through 105 (of 462 total)
The code below is nothing fancy but you can schedule something simple as below. You can replace $INST1 with your Service name and you can replace echo "hello" with some command...
February 22, 2005 at 12:02 pm
You can use the dtsrun utility directly from the command prompt
February 22, 2005 at 8:32 am
You don't have to create an ODBC. Just give you servername in Data Source
February 22, 2005 at 7:47 am
Try re-building your indexes if CHECKTABLE or CHECKALLOC doesn't help.
February 22, 2005 at 7:40 am
Right click Linked Servers and click on New Linked Servers.
Enter say test(or anything else) as the name of the linked server.
Under server type, select the option other data source...
February 22, 2005 at 7:32 am
SQL server will use shared lock for the above. Can you please describe what you are trying to achieve.The article below has some more information.
http://databasejournal.com/features/mssql/article.php/3289661
February 21, 2005 at 4:01 pm
You can specify an alias for a linked server. Select the datasource to be other data source and select the driver for SQL server.
February 21, 2005 at 7:36 am
Not only the entries above but you might want to search for all the entries for the virtual name and delete them all.
February 18, 2005 at 3:50 pm
Run the SQL installer and select advanced options. Select the option of Maintain a virtual Server for Failover clustering. You can check this article also.
http://www.databasejournal.com/features/mssql/article.php/10894_3467291_1
February 18, 2005 at 1:50 pm
That's good. Just curious. Why do you need to shut down sql to perform maintenance on your system ?
February 17, 2005 at 7:54 pm
select filegroup_name(groupid) as filegroup ,object_name(id) as table_name from sysindexes where indid = 255
February 17, 2005 at 1:55 pm
Check for any references to the old instance in the registry and try deleting them.
February 17, 2005 at 1:32 pm
tempdb gets re-created everytime SQL server starts up.
You can change the location of tempdb by specifying alter database tempdb modify file name='tempdb',filename = '' and then re-start sql services
or
Stop...
February 17, 2005 at 1:27 pm
can you try to execute sqlservr.exe directly from the command prompt and see if sql services starts or not ? The .exe canbe found under \microsoft SQL Server\MSSQL\Binn\
February 17, 2005 at 1:16 pm
Do a dbcc updateusage and that will update the count in enterprise manager.
February 16, 2005 at 9:45 am
Viewing 15 posts - 91 through 105 (of 462 total)