Viewing 15 posts - 106 through 120 (of 158 total)
And watch out for events that might only occur Monthly or Quarterly etc.
May 25, 2004 at 1:41 am
Hi
When you right click on the table to generate a script there are three tabs
General -- Formatting -- Options
Click on options and there you can tick script indexes...
May 25, 2004 at 1:02 am
In Enterprise Manager expand your database and choose tables. If you want to copy more than one table hold down the shift key and use your arrow keys to highlight...
May 25, 2004 at 12:37 am
Good for him! But I hope he still has a job.
May 21, 2004 at 5:47 am
Hi
The drive must be mapped under the user profile that SQL Server runs on.
May 21, 2004 at 5:11 am
TRY THIS.......
CREATE PROCEDURE getKeyField
@tableRef sysname
AS
SELECT constraint_name FROM
INFORMATION_SCHEMA.TABLE_CONSTRAINTS (NOLOCK)
WHERE TABLE_NAME = @tableRef AND CONSTRAINT_TYPE = 'PRIMARY KEY'
exec getKeyField 'TABLENAME'
May 21, 2004 at 4:50 am
I do not have a solution like that but bear in mind the SQL Server has the very best tools for importing multiple source types. Look at the DTS Packages.
May 21, 2004 at 4:14 am
To place an existing table on a different filegroup (Enterprise Manager)
• Expand Databases, expand the database in which the table belongs,...
May 18, 2004 at 3:17 am
The reason for Going 64bit was simple. My 32bit machines are not coping anymore. And I am preparing my hardware to make the most of Yukon when it ships.
March 1, 2004 at 10:29 pm
Thanks for the reply Larry.
At least I am not the only one with this disparate architecture. I might give you a mail when the 64bit partition...
February 26, 2004 at 11:19 pm
Adding a column in a hurry without doing checks!
Been there! Done that! and will NEVER DO IT AGAIN! It can cause total destruction...
February 18, 2004 at 11:32 pm
Hi,
One of the causes for this is that the Oracle datatype number can have a very large precision data type, that is too large for vbscript to handle. (Its actuly...
January 23, 2004 at 2:29 am
Hi,
I really hope that I have not TOTALLY missed it.
Are you using Query Analyser? If so are you using "Query results in Text"?
Change the Query Analyser to return the results...
January 6, 2004 at 4:09 am
Frank
I have already saved the script in my "KEEP - will need some day" safe place.
Yes it works - I have just tested it.
January 6, 2004 at 2:38 am
Hi,
I was typing a response that says exactly the same as Frank's replay. You have to use an extended sp if you wan't the actual IP.
January 6, 2004 at 2:30 am
Viewing 15 posts - 106 through 120 (of 158 total)