Viewing 15 posts - 46 through 60 (of 130 total)
EthanZ (2/5/2013)
February 5, 2013 at 3:01 pm
The link you are referring to is the first one in my signature. Unfortunately it doesn't do much good here because the OP is " in charge of creating a...
February 5, 2013 at 10:35 am
Welcome... it would help if you provided DDL and sample data and what you expect to see as a result. There's a link to a posting guide somewhere, one...
February 5, 2013 at 10:06 am
Grant Fritchey (2/5/2013)
February 5, 2013 at 9:07 am
If you want to learn the general SQL then you can get whatever your book is using,
lots of open source DB's and I think all vendors have an express...
February 5, 2013 at 8:21 am
I used Litespeed on a 2005/2008 R2 SQL Cluster. Like many mentioned a lot of factors, disk IO being a major part. Native backup would have never worked out...
February 5, 2013 at 7:32 am
Did you specify the double quotes as the text qualifier? if not it'll read the comma's inside the quotes...
example:
"test, test1,test2","xyz name","some id"
will read:
Col1 Col2 ...
January 26, 2013 at 10:46 pm
anthony.green (1/23/2013)
I evaluated it a good few years ago now and it wasn't...
January 23, 2013 at 8:06 am
I think everyone else has iterated the same thing. What is the actual goal of the migration? That would help in determining a strategy. If you're goal is to...
January 23, 2013 at 7:56 am
Who's the owner of the package vs. the account that's running it? dtsx packages will ask for saved credentials if the person running it is different from the owner. ...
January 23, 2013 at 7:18 am
MyDoggieJessie (1/22/2013)
DECLARE...
January 23, 2013 at 7:07 am
I think this is what you're looking for...
Providing easily consumable sample data makes it easier for people to help and more likely...
--Setup Sample Data
declare @transactions as table (Receivers char(1), Payers...
January 22, 2013 at 6:55 am
This post may help:
http://www.sqlservercentral.com/Forums/Topic262014-17-1.aspx
January 16, 2013 at 7:25 am
ALTER DATABASE DBName ADD FILE
(NAME =F_TBL_201301,FILENAME ="<location>\F_TBL_201301.ndf",
SIZE = 50MB, MAXSIZE = unlimited, FILEGROWTH = 10%
) TO FILEGROUP FG_TBL
ALTER PARTITION SCHEME PS_TBL NEXT USED...
January 16, 2013 at 7:19 am
Mykre (1/15/2013)
January 16, 2013 at 6:59 am
Viewing 15 posts - 46 through 60 (of 130 total)