Viewing 15 posts - 151 through 165 (of 285 total)
EM is doing your legwork for you. by the time you create and debug a script to move the tables, you can have it done in EM. take...
December 8, 2002 at 3:13 pm
You get what you payfor. MySQL is a great learning tool. Industrial strength solutions require industrial strength tools. You have to have things like backup, multiple queries,...
December 8, 2002 at 3:11 pm
Timestamp is not really an indicator of time in SQL Server. If you want 2 datetime fields, use that instead.
Timestamp is a database-wide unique number.
December 8, 2002 at 3:07 pm
The lesson here is that NULL and DEFAULT should be trigger that you have an invalid table definition. If you are supplying a default, then the column should be...
December 8, 2002 at 7:36 am
Are you sure your 1st job is finished before you try to run it a second time? And make sure the job is enabled.
December 8, 2002 at 7:33 am
quote:
Even then when a stored procedure is run you cannot concatenate two vairables to a single parameter. Even if both where 4000...
December 8, 2002 at 7:28 am
You need to supply more detail about what's failing.
In EM, you can get this if you are trying to update rows from a complex view that doesn't include a...
December 8, 2002 at 7:25 am
SQL doesn't have "variable length rows" so you need to return something for each column. Use
select ColumnA=isNull(columnA, '') and specify every column and an appropriate default value. If...
December 8, 2002 at 7:23 am
Antares solution will work. however, this function is better served by your client app that inserts the data. names are notoriously inconsistent in particular when you start with...
December 8, 2002 at 7:19 am
The backup is always performed by the server itself. You can make a backup of the .ldf and .mdf files if you want a "sorta" backup from another machine.
if...
December 8, 2002 at 7:14 am
quote:
Is there a way to automatically add/suppress leading zeros in a numeric column? Any help would be greatly appreciated. Thanks.
December 5, 2002 at 9:45 pm
I'm even older so I use the windiff tool that comes with visual studio.
December 5, 2002 at 9:33 pm
quote:
How can you interogate SQL Server Database properties (eg. size etc) from either VB (pro) or access or query.
December 5, 2002 at 9:32 pm
quote:
How to build dynamic TSQL statement in an instead of trigger for inserting values from inserted to base table?
December 5, 2002 at 9:28 pm
quote:
What's the best way of generating the number in a primary key column besides identity column ?
December 5, 2002 at 9:19 pm
Viewing 15 posts - 151 through 165 (of 285 total)