Viewing 15 posts - 1,066 through 1,080 (of 1,291 total)
AllIcansuggestispostthenexttimeyoucopypasteyourcodeusingCODETAGESavailablebeside.
Cant understand what's that above?
Now looks at this
All I can suggest is post the next time you copy pste your code using CODE TAGES available beside.
That's what you have...
November 16, 2009 at 11:17 am
Use This
SELECT TOP 2 AppName, Date, Query FROM YOUR_TABLE
GROUP BY AppName, Date, Query
November 16, 2009 at 11:07 am
That's what I meant in my last reply.
In the Query Editor,
Use this
USE
[NDP-MWD]
SET IDENTITY_INSERT [NDP-MWD].dbo.[Comments] ON
INSERT INTO NDP-MWD.dbo.Comments Select * FROM NDM-MWD.dbo.Comments
SET IDENTITY_INSERT [NDP-MWD].dbo.[Comments] OFF
November 16, 2009 at 10:57 am
Steve is right. You should not use SCOPE_IDENTITY, instead use Inner Join to get the corresponding value for each record.
November 16, 2009 at 10:52 am
Trying to figure out without the table structure and some sample data would be difficult.
I encourage you to post the create table scripts and also some sample insert scripts (5-10...
November 16, 2009 at 10:17 am
copy the complete dbo.Comments from the NDM-MWD database to the NDP-MWD database
Use the Following Script
INSERT INTO NDP-MWD.dbo.Comments Select * FROM NDM-MWD.dbo.Comments
You need to take additional care if there...
November 16, 2009 at 10:04 am
Right Click on your SQL Instance and select Properties.
In the very first dialog, you have the last property Is Clustered . A TRUE Value Indicates it is clustered a...
November 16, 2009 at 10:00 am
rkaucher (11/16/2009)
GilaMonster (11/16/2009)
http://www.google.com/search?q=What+is+RAID+10You should have used LMGTFY. 😉
Gail is right with her reply.
You posted a question
What is RAID 10?
which should have been searched in a...
November 16, 2009 at 9:46 am
Seems to be crazy but I ran the same query without the
WHERE Convert(varchar, Date, 101) = '11/13/2009'
and got the result what you wanted.
November 16, 2009 at 8:57 am
Will it create any data loss (without backing up the truncated part of the transaction log every time a checkpoint occurs in the database)
It will not create...
November 15, 2009 at 9:22 pm
Data should be stored top down, not left to right
Flo
Good Question Flo and wonder if someone would use that many Parameters.
November 14, 2009 at 2:09 pm
It is 2100 Parameters, not sure if it has been increased in SQL 2008.
November 14, 2009 at 1:48 pm
Can you try this
Copy the DTSX Files from the ServerA(2005) to ServerB.
Go to the ServerB(2008) and then create a new solution and try to add the packages into that solution.
November 14, 2009 at 1:01 pm
Hmm Seems to be strange, have not got an idea what does it alter?
Any way have you tried to rerun that job?
November 13, 2009 at 1:42 pm
What is the script you have?
Post it here.
Without that we have to do guess work on your script...
November 13, 2009 at 1:30 pm
Viewing 15 posts - 1,066 through 1,080 (of 1,291 total)