Viewing 15 posts - 121 through 135 (of 262 total)
I guess if you were just memorizing answers and not learning it would be a bad thing as you described. Assuming you have some working knowledge of the subject matter...
October 31, 2007 at 10:12 am
I'm not sure what you guys are getting all fussy about...those links and exams don't even exist on those sites. Besides what better study guide is there then a copy...
October 30, 2007 at 11:15 am
give this one a go...
-----------------------------------------------------------------------------
USE CICP
GO
IF OBJECT_ID(N'dbo.NewShippers') IS NOT NULL
DROP TABLE dbo.NewShippers
GO
CREATE TABLE dbo.NewShippers (
Phone NVARCHAR(15) PRIMARY KEY
)
GO
INSERT INTO dbo.NewShippers (Phone)
SELECT Northwind.dbo.Shippers.Phone FROM Northwind.dbo.Shippers
GO
September 5, 2007 at 4:39 pm
Select into isn't the correct way to insert data if you are going to manually create the table. So in your example either create the table using the first statement...
September 5, 2007 at 3:36 pm
Depending on your security setup and what version of SQL you're running you could use the good ole Bulk Copy (BCP) Utility (http://msdn2.microsoft.com/en-us/library/ms162802.aspx)
July 31, 2007 at 3:42 pm
Ah okay so it's based on table statistics and index fragmentation...yeah I'm including table hints in my queries here because for some reason the clustered index on my table1 is...
July 31, 2007 at 11:41 am
The best solution I've come across is Jasper Smith's RS Scripter utility. I did this recently when I wanted to take a copy of QA and script out the entire...
July 30, 2007 at 4:50 pm
So I guess the real question is...how does SQL Server choose which index to use?
Anyone...?
July 30, 2007 at 3:33 pm
I've had a couple of these....
Q's:
1.) If you were a pizza topping which one would you be and why?
2.) If you could choose any state to secede from...
July 30, 2007 at 10:56 am
Thanks Peddie...I was referring to the 'Access Denied' page that pops up when clicking on the 'Active Threads' link. It appears even after logging in using the 'Login' link.
July 26, 2007 at 12:40 pm
Thanks Steve,
Any chance they will be including the login and registration forms on the 'Access Denied' page?
July 26, 2007 at 10:46 am
i agree with Kenneth...whenever I need to use brackets I can't help but thinking "What idiot named this object something they we're not supposed to". I don't think it causes...
July 24, 2007 at 4:33 pm
trunacte statements are not logged so I don't believe the t-log would be affected by this. If those sp's called did delete's however it would most definitely increase the t-log...
July 23, 2007 at 2:45 pm
Viewing 15 posts - 121 through 135 (of 262 total)