Viewing 15 posts - 76 through 90 (of 137 total)
Yes - that is a real problem - they are happy to "snatch" the free code from the open source projects but don't give anything back - ironically they are...
October 23, 2007 at 3:35 am
Yeah - altering a table with a million records through the GUI = brave man
October 23, 2007 at 3:17 am
Jeroen van der Wal (10/23/2007)
October 23, 2007 at 3:13 am
It is good to have the option on to generate scripts anyway (however much you like/dislike the SQL produced) - as this reminds you that you should have scripted!
Pity the...
October 5, 2007 at 2:11 am
As others have said issue is the varchar comparison - I would use something like
select 1 where getdate() <= convert(datetime,convert(varchar(10),'01/01/2008',103),103)
October 5, 2007 at 1:52 am
Create linked server with sproc sp_addlinkedserver - also you may need to create linked server login using sp_addlinkedsrvlogin see SQL docs for info on both of these.
Then to assuming your...
July 30, 2007 at 1:55 am
I would love the ability to have alias names for both servers and databases - it would make setting up test environments so much easier and also make the migration...
July 3, 2007 at 2:38 am
I work for a client where they are looking at doing something similar. The great thing about VM's is you can get one up and running real fast once the...
May 23, 2007 at 5:10 am
I think your confusion is on the version info - this is giving you the info of the SQL Server version/sp and the OS version/sp
The bit in "Microsoft SQL...
May 23, 2007 at 4:55 am
Aprat from other suggestions make sure you have not got AutoShrink on - I have seen this get locked up when doing massive operations.
Remember that data is stored in the...
May 23, 2007 at 4:46 am
As has been hinted at in other posts the performance depends a lot on whether or not the index you are (re)creating is clustered or not. In simple terms a...
April 20, 2007 at 4:03 am
Looking atthe error you are hitting it is actually the log on tempdb that is filling - and there is generally not much point in transaction logs on tempdb beyond...
April 20, 2007 at 3:51 am
Possibly easier to remember for column names in tables is to use the INFORMATION_SCHEMA views SQL sets up for ADO i.e.:
SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE COLUMN_NAME LIKE '%yourname%'
Adjust SELECT *...
April 20, 2007 at 3:23 am
Simplest thing I have found is detach the database files on the first server, copy them to the second (if v. big then copying first to some sort of NTFS...
October 6, 2006 at 7:51 am
DTSBackup2000 is the one for me - as it also allows you to save away copies of the jobs in its own format that preserves layout etc (not on any...
May 9, 2006 at 1:19 pm
Viewing 15 posts - 76 through 90 (of 137 total)