Viewing 15 posts - 31 through 45 (of 323 total)
In Management Studio you should be able to see your instance in the Registered Servers tab (View->Registered Servers).
If not, right click on the Database Engine row tree and choose Update...
August 23, 2005 at 1:20 am
You can Export and Import your list of Registered Servers in Management Studio.
On your old machine: Open the Registered Servers tab, right-click on a group of servers and choose Export....
August 23, 2005 at 1:17 am
A more simplified version:
Print CONVERT(char(8), GETDATE(),14)
exec master..xp_cmdshell 'copy \\ipadddress\txtdatafileforplanning\salestable.zip D:\FilecopyEpinav\Script_filecopy'
Print CONVERT(char(8), GETDATE(),14)
http://www.juliankuiters.id.au/article.php/t-sql-time-without-date
August 23, 2005 at 12:51 am
The ASPNet service will have a random login generated at install, so both machines will be different. The ASPNet login probably doesn't have network access either, so wouldn't be allowed...
August 2, 2005 at 8:13 pm
SET IMPLICIT_TRANSACTIONS [ON | OFF]
will set transactions only for the current connection.
To change the server default for all new connections:
In Enterprise Manager: Right click server -> properties -> Connections tab...
August 2, 2005 at 2:22 am
Windows Authentication can be used, but the same username and password must be present on both the client and server machines (and have permissions to SQL Server of course).
August 2, 2005 at 1:33 am
I've used both the products, and in terms of performance and output size, they are almost identical (only 2% size difference). Both have slightly different feature sets, but overall they...
August 2, 2005 at 1:29 am
Maybe....
-- Create temporary table with identity / auto-incrementing number
CREATE TABLE #Conv (ConvID int IDENTITY(1,1), OrderID int)
-- Insert the existing orders, identity values are automatically created
INSERT INTO #Conv (OrderID)
SELECT OrderID FROM...
July 26, 2005 at 2:53 am
DATEADD() is the function you need to use to add days to a date. (It's also the same function you use to subtract days).
As Farrell said DATEADD( day, 14, OPENDT)...
July 26, 2005 at 2:43 am
The Web version (and possibly the normal app) would be using ADO.
Every SELECT statement creates a RecordSet in ADO, and these are entirely different objects to messages (PRINT).
One way that...
July 21, 2005 at 12:17 am
July 21, 2005 at 12:07 am
In DMO I think you need to look at each of the members for each of the roles in the database/server. checkout EnumServerRoleMember in BOL.
July 21, 2005 at 12:05 am
If you are using windows 2000 Professional, only the Developer edition of SQL Server 2005 will install.
Enterprise Edition requires a Server version of Windows.
July 19, 2005 at 2:13 am
Did you install a named instance of SQL Server 2005?
It's possible to install SQL Server 2005 in a side-by-side installation with SQL Server 2005. Check the "services" in control...
July 19, 2005 at 2:08 am
SQL Server 2005 can be installed in a side-by-side installation with SQL Server 2000. One of your instances would need to be a named instance.
SQL Server 2005 requires the .Net...
July 19, 2005 at 2:06 am
Viewing 15 posts - 31 through 45 (of 323 total)