Forum Replies Created

Viewing 15 posts - 226 through 240 (of 267 total)

  • RE: Wonderful work on the site but where did the stars go to?

    I have to admit that I was quite pleased to find myself "promoted" to Forum Guru, having formerly been a Junior Subamateur Forum Stalker, or something like that.  I'm considering...

  • RE: Error Handling Question

    Error 3604 is an oddball, at least on my server, because it does not set @@ERROR, even though the severity level of the message is 16.  There is no way...

  • RE: Cursor issue ?

    Your code has the snippet:

    3/ While @@FETCH_STATUS <> 0 

    Don't you mean WHILE @@FETCH_STATUS = 0?  A zero means that the fetch worked.

    While...

  • RE: A multi part question re cloning and restoring a database

    Cloning a database is easy in SQL Server.  Really.  In fact, it looks like you've already succeeded.  The problem is in the master database, but restoring the master database is...

  • RE: Another trigger question

    As Frank says, you should look up triggers in the BOL.  The INSTEAD OF trigger is probably the most elegant way to handle this, but you can do this with...

  • RE: SQL Date Problem

    I agree with Jonathan that you should be using DATETIME or SMALLDATETIME as your datatype.  But if you really want to stick with char/varchar, then you should use CONVERT instead...

  • RE: Identity (Autonumber)

    I'm not sure your request quite makes sense to us yet.

    You can't input values into identity columns (unless you set identity_insert on for that table) - they are generated by...

  • RE: Parmeterized list to a stored procedure

    It could be that what reddyk needs is the ability to receive a comma-delimited string of arguments and parse out the individual arguments, or something similar.  If so, the following...

  • RE: Transfer linked server from one SQLserver to Another

    I was hoping to be able to put together a script for you, but I am not going to have the time.  In principle, all you need to do is...

  • RE: Transfer linked server from one SQLserver to Another

    Do you just want the server definitions and settings, or do you want all the associated remote logins as well?

  • RE: supporting multiple languages

    1. Is it feasible to combine all 17 language columns in a single table? This is preferred from a development perspective, as change/revision control simplified- as is the development of...

  • RE: Used Tran Log with no Open Trans

    When you say that the log is 4Gb in size, but there is about 500 Mb in use, do you mean that you are looking at the output of DBCC...

  • RE: registering a remote database

    Kenneth,

    You are correct, but surely SQLBill is on the right track here - just because you can ping the server doesn't mean that TCP 1433 (or whatever non-default port...

  • RE: Urgent Need: How to connect SQL Server 2000 Database by using ASP .NET

    With such a generic post, I don't think you'll get many responses, so I thought I'd at least send you a URL.  You can find some sample code and tutorial...

  • RE: Confused About a NULL

    One more thing, ccundy, although you probably already know this ...

    You shouldn't code DISTINCT in your subquery when it is being accessed with a set operator like IN, EXISTS, ANY,...

Viewing 15 posts - 226 through 240 (of 267 total)