Viewing 15 posts - 91 through 105 (of 222 total)
Hi Jorge
Can you please clarify, the updates you are trying to do for comments is on which table? Is it the same comments table or you are updating the new...
June 25, 2009 at 7:06 pm
Hi Jaya
If your requirement is only to create the database, then why don't you use the approach
check if database exists then restore the database with replace. If you want...
April 26, 2009 at 10:13 pm
in a rush but will give a sample code and you can work around it based on your requirement.
DECLARE @colList varchar(8000)
SELECT @colList = COALESCE(@colList + ', ', '') + tblcol
FROM...
April 17, 2009 at 12:35 am
Hi Linda
Are your database backups on the server as well?
no database backups are not on the same server.
Can you add an external array?
i am in a virtual...
March 18, 2009 at 6:34 am
zubairm76 (2/3/2009)
When I convert using VarChar:
select CONVERT (varchar(11) ,WbsStartDate,126) from wbsdata
the result is May 25 2006 which is almost ok.
I need the format to be 2006 May 25....
February 4, 2009 at 10:07 pm
as mentioned previously, you can add identity column and still use the exisiting primary key.
If you really want to add identity column to use as primary key, add it...
February 4, 2009 at 9:34 pm
Brad M. McGehee (1/29/2009)
January 29, 2009 at 5:50 pm
Your plan sounds fine but as Adonia said in previous post, disable the user rather than deleting. In future, if you'll face any problem in any sql server object referencing...
January 29, 2009 at 5:38 pm
My questions are:
Since this is 2005 shouldn't the transaction log backups start to fail (which is not the case) on the primary side if the next transaction log...
January 28, 2009 at 7:22 pm
Its entirely different here in Australia as to US. Contractors are the first to be axed. Group of big IT companies haven't renewed contracts of more than 1000 employees giving...
January 19, 2009 at 9:18 pm
Krishna_DBA (1/17/2009)
CREATE TABLE ContactPhone
(
--Numbers for NANPA--
AreaCode_NPA nvarchar(10),--Area code for NANPA
Exchange_NXX nvarchar(10),--Exchange code for NANPA
Number_XXXXnvarchar(10),--Last 4 digits...
January 18, 2009 at 10:24 pm
Krishna
I would say, try to generalise your table strucutre as much you can. i know its not possible to standardise the phone number formats from all the countries, but atleast...
January 18, 2009 at 10:18 pm
interesting article with bonus of knowledgable discussion. keep it up mates.
January 13, 2009 at 7:13 pm
what do you mean by table change - is it data in tables or table structure?
January 13, 2009 at 5:14 pm
Thanks Lynn.
I think i need another coffee to get me working. i could have figured this out earlier before posting it here.
Cheers
January 7, 2009 at 5:26 pm
Viewing 15 posts - 91 through 105 (of 222 total)