Viewing 15 posts - 1,396 through 1,410 (of 1,535 total)
DBCC CHECKIDENT (<tablename> --Resets the ident
Max limit on the number is the max value of the column, in this case int so 2,147,483,647....you could...
March 30, 2004 at 1:51 pm
I'm not aware of any way to reassigning that port, however you could limit the traffic allowed access through that port to certain IP addresses or subnets.
March 30, 2004 at 1:19 pm
You could try using @@identity, scope_identity is new to SQL2k
March 30, 2004 at 1:14 pm
Unless you have a site license or select licensing agreement or you will be using large amounts of memory I would not go with Ent Ed on the standby due...
March 30, 2004 at 12:43 pm
If you subscriber to SQL Server Magazine they have an article with a UDF that will actually just go and remove either the numeric or non-numeric characters from a string...
March 30, 2004 at 12:22 pm
There is a log shipping monitor, which is a nice little graphical display that tells you whether or not your logshipping is outside your specified deltas, however there are better...
March 30, 2004 at 11:45 am
In the trace properties you could remove everything from the events to trace other than Lockseadlock and Locks
March 30, 2004 at 11:21 am
Have you thought about running a trace against the server to capture the textdata information so that you can go back and see what that spid was attempting to execute...
March 30, 2004 at 10:23 am
Populating the table just adds rows, this is best used as an identity when doing an insert. If you wanted to insert against more than one table for example and...
March 30, 2004 at 10:21 am
Whenever you insert a record. You create a proc to just return an incremental value by using a procedure and scope_identity(), which you could then use to populate another table
create...
March 30, 2004 at 9:53 am
Did you check the string the is executing the job step? You could be using the /U switch with the SA user and pwd.
Within the DTS I would also check...
March 30, 2004 at 8:33 am
Here's what I did....
Make sure that the account you are logging into the machines as is an Admin on both boxes and the cluster so that it can access all resources.
Fail...
March 30, 2004 at 8:04 am
When you create the table use the identity for the column definition
CREATE TABLE testuser (THE_ID_COL INT IDENTITY(1,1))
You can change the 1,1 to reflect changes in either the starting number, or...
March 30, 2004 at 8:02 am
From the command line
OSQL -L
March 30, 2004 at 7:59 am
You can only run the Maintenance plan logshipping from Enterprise to Enterprise, that does not however stop you from running a manual logshipping deal. If you do a search on...
March 30, 2004 at 5:24 am
Viewing 15 posts - 1,396 through 1,410 (of 1,535 total)