Viewing 15 posts - 25,936 through 25,950 (of 26,487 total)
Or, if you know your data, you could build on this:
declare @varTable table (
TestData varchar(max)
)
insert into @varTable values ('Dtautas2/22/2007 5:22:32 PM: text')
insert into @varTable values ('Dtautas2/22/2007 5:22:32 AM:...
May 15, 2007 at 10:01 am
I have also experienced this on occasion where I work. One of two things has occurred; first, the server running SQL Server has been rebooted; or second, we have had...
May 15, 2007 at 9:19 am
My question is why? SSIS has a data conversion task that you can use to complete the data conversions you require without writing any scripts.
May 15, 2007 at 9:14 am
I am going out on a limb here, and say you probably need to rebuild the master database so you can start SQL and restore the backup of the most...
May 14, 2007 at 2:15 pm
Not sure, and don't really want to get into a religous data warehouse discussion, but I think you have the data warehouse approaches flipped. Kimball talks about a Data Bus...
May 14, 2007 at 9:39 am
SQL Server 2000 does not allow you to use a variable in the top statement. SQL Server 1005 changes that. In SQL 2000, to be able to specify a different...
May 14, 2007 at 9:24 am
There really is no protection from mistakes, only ways to slow you down when making them. In SQL Server 2005 you can setup DDL Triggers that would prevent things like...
May 14, 2007 at 9:19 am
That helps. It means that products like PeopleSoft aren't going to update their tools to take advantage of non standard enhancements like the INCLUDEd columns in indexes in SQL Server...
May 13, 2007 at 1:16 pm
First, your UPDATE syntax is incorrect. Second, if DUEDATE is a calculated field, it can't be updated, the fields that make up the calculated field needs to be updated. If...
May 11, 2007 at 1:55 pm
Don't double the size of the field: MyCharField varchar(25) --> MyCharField nvarchar(50) NO. It simply goes from MyCharField varchar(25) --> MyCharField nvarchar(25). The change will double the amount of space...
May 11, 2007 at 10:06 am
What doesn't make sense? Tell us what you think you understand (or don't) and then we can fill in the blanks and increase your understanding.
May 11, 2007 at 9:51 am
Matt, could you upload your project plan like they upload scripts to this site?
May 11, 2007 at 9:48 am
Books Online covers this fairly well. That is where I would start reading.
May 11, 2007 at 9:30 am
I will second Michael's comments. If you bring in a consultant, be sure to work with him/her closely. Don't let them go off and do their thing in a vacuum. ...
May 11, 2007 at 6:32 am
Viewing 15 posts - 25,936 through 25,950 (of 26,487 total)