Viewing 15 posts - 76 through 90 (of 111 total)
I just found that SQL Management studio is adding a server in Linkedserver folder though the connection is not established properly. Now, Im up to running script to create a...
June 11, 2009 at 5:57 am
Your reply solved my 3 hours head ache. I never looked at that bit of code ...
Thank you
June 3, 2009 at 7:52 am
After your reply , I have googled and read about OUTPUT Clause and it will perfectly improve the performance.
Thank you.
June 2, 2009 at 6:06 am
Updatede cursor (posted with clear explanation )
declare @pidentity int
set @pidentity = 0
DECLARE cur cursor for
select id from x ...
June 2, 2009 at 4:39 am
Sorry forgot to mention about table x. Table x is copy of records from other table (old database) that satisfy certain condition. old table contains some test data and irrelvant...
June 2, 2009 at 4:36 am
I have used delimeter ',' and also had some text containing ',' in one of the data field which was causing the problem. But I still wondering how to populate...
June 1, 2009 at 3:10 pm
I certainely thought about creating linked server but I wasnt sure. I will try both the options mentioned in the post. Thanks to everyone who has replied to this post.
Ta
May 8, 2009 at 3:46 am
I have tried using Ip address but im not sure how to use them in query? Is it possible to give an example to write a basic query using...
May 8, 2009 at 3:25 am
sorry, Im not able to see any information on the link you provided. Can you give specify the correct link
Ta
May 6, 2009 at 8:44 am
I clearly understood that I first plan what needs to recovered in case of disaster then try to figure out DR method that suits my business process and implement at...
May 6, 2009 at 7:48 am
Does this mean I need to create replication before starting the development?
Ta
May 6, 2009 at 7:35 am
Thank you. Your explanation cleared my confusion.
April 30, 2009 at 2:56 am
Here are my table scripts.
CREATE TABLE Product
(
product_id varchar(20), --- Primary key
product_name varchar(30)
Constraint PK_product_id Primary Key
) ON Primary
Create TABLE Sku
(
sku_id varchar(20),
...
April 30, 2009 at 1:31 am
Viewing 15 posts - 76 through 90 (of 111 total)