Viewing 15 posts - 1,081 through 1,095 (of 1,220 total)
There is nothing particularly unusual with the numbers you are seeing, especially if SQL Server is the only application running on the server.
SQL will not release memory unless there is...
May 22, 2006 at 11:14 pm
Try running the SQL Server Network Utility. Check whether TCP/IP is enabled
May 21, 2006 at 9:54 pm
The duplicates you are seeing are probably threads for a SPID. This is quite normal and is probably not the cause of your problem.
May 3, 2006 at 10:24 pm
Have you tried to connect to this instance using the local administrator account ?
And, have you tried using the old DBA's windows account ?
April 27, 2006 at 5:08 pm
Can you login to the server as a local administrator (not a domain administrator) ?
Do you know the password for the sa login ?
April 26, 2006 at 11:46 pm
By default, members of the local administrators group for the server get admin access to SQL Server through the SQL Server "login" called "BUILTIN\Administrators". Does this login exist on...
April 26, 2006 at 9:33 pm
I tend to agree with Kumar. The authors do not demonstrate a good understanding of clustering or log shipping. If you are not familiar with the MS options,...
April 26, 2006 at 5:03 pm
April 6, 2006 at 9:17 pm
The indexes on the rowguid columns are created because this is what merge replication uses to select data out of these tables. If the indexes are dropped, the system...
February 22, 2006 at 8:30 pm
They should be on separate disks so that there is no contention for I/O.
To move them, you can either
- detact the database, move the files as desired...
January 24, 2006 at 7:49 pm
This looks like you do not have a sheet called "Markets" in the workbook Markets.xls. Your Select statement works fine for me.
December 19, 2005 at 5:20 pm
I think the answer is that the name of the sheet used in the Select statement needs to end with $. In the workbook itself, the name of the...
December 19, 2005 at 4:22 pm
Does the file contain a sheet called "Markets".
The table in the select statement 'SELECT * FROM Markets' needs to match a sheet in the workbook.
December 18, 2005 at 11:49 pm
Does the file exist in C:\MarketsImport on the server ?
The query is run on the SQL box so the file must be on that server.
Alternatively, you could create...
December 18, 2005 at 7:43 pm
SQL Server will not have any issues with you renaming these "things" using sp_rename.
December 15, 2005 at 8:27 pm
Viewing 15 posts - 1,081 through 1,095 (of 1,220 total)