Viewing 15 posts - 436 through 450 (of 684 total)
I believe that means you should create a new database on the SQL Server in question. There are various ways of doing this (right-click on the database folder in Management...
August 9, 2006 at 2:14 am
Hi Cory,
Everything is possible - nothing is impossible .
To enumerate the contents of a drive (or folder) from SQL Server you can use the following...
August 9, 2006 at 2:08 am
Hi Justin,
Yes, that would be quite easy. Just add another parameter called @length (datatype tinyint).
Then, inside the function, the while statement can be:
while len(@result) < @length
When you call the...
August 7, 2006 at 10:32 am
Hi Justin,
Given that you're using SQL 2000 you cannot create a CLR function but you can do this easily enough using a standard user defined function that accepts an numeric...
August 7, 2006 at 8:33 am
James,
The error suggests that you might have another column (in addition to the primary key column) that has a unique constraint on it.
Run sp_help against the table and check out...
August 2, 2006 at 4:35 am
Hi Jennifer,
That's just the way it is. SQL Server is greedy in that way .
Basically, an internal SQL Server process (LazyWriter) continuously polls the system...
August 1, 2006 at 6:33 am
Hi Miquel,
Try this:
select
object_name(constid) as constraint_name,object_name(fkeyid)...
August 1, 2006 at 3:35 am
Hi Jennifer,
When using dynamic memory configuration, as you have done, SQL Server is designed to take as much memory as it needs (up to the max limit). So in your...
August 1, 2006 at 3:15 am
Hi,
A composite key is one that uniquely identifies a row by utilising more than one column. For example consider a table called Book, which contains details on books.
To uniquely identify...
July 31, 2006 at 3:35 am
Hi Hendy,
a SQL Server 2000 to 2005 migration should not require any manual changes of tables, stored procs unless you have code that directly accesses system objects that have been...
July 31, 2006 at 3:22 am
Response is here
Please limit yourself to one post per question.
July 28, 2006 at 7:09 am
Response is here
Please limit yourself to one post per question.
July 28, 2006 at 7:08 am
Hi Hendy,
Both models you have described are centralized models. The first one is a connected and the second one is a disconnected model.
I favour the second model, perhaps with some...
July 28, 2006 at 7:05 am
Yep,
I'd agree with Pam. DTS is probably the better option. Replication is a lot more involved and will need a close eye to ensure thing are running smoothly.
July 27, 2006 at 9:12 am
Hi Crystal,
Putting the system database log files on a seperate drive isn't necessary. The system databases don't change much and as a result there is probably negligible I/O activity on...
July 27, 2006 at 9:02 am
Viewing 15 posts - 436 through 450 (of 684 total)