Search Results

0
votes

T-SQL: How do I get the rows from one table whose values completely match up with values in another table?

If you are trying to return only complete sets of records, you could try this. I would definitely recommend using meaningful aliases, though ... Cervo is right, we need an additional check …
1
vote

How can I automate exporting of tables into proper XML files from MSSQL or Access?

If you want a document instead of a fragment, you'll probably need a two-part solution. However, both parts could be done in SQL Server. It looks from the comments on Tom's entry like you …
0
votes

Potential Pitfalls of inserting millions of records into SQL Server 2005 from flat file

You might consider switching from full recovery to bulk-logged. This will help to keep your backups a reasonable size. …
2
votes

Can Database Mirroring Be Setup On MS SQLServer Between Two Clusters

At least in 2005 and 2008, the answer is yes. I don't personally have experience with clustering …
3
votes

Upsizing a split Access database

I would agree with your first guess: you will want to run the wizard on the back-end mdb. Once that's in SQL Server, also as you guessed, you'll want to link the front end to work with the …
0
votes

Using virtual servers for hosting SQL Servers

You might also check this question and …
0
votes

How does the SQL Server JDBC Trusted Connection Authentication work?

Have you looked at this question? The situation seems to be simi …
2
votes

SQL Server: Make all UPPER case to Proper Case/Title Case

Just keep in mind that properly changing upper-case text to proper-case text may require manual corrections in some, well, cases. With names, for example: I do not appreciate applications that miss …
0
votes

CREATE TRIGGER is taking more than 30 minutes on SQL Server 2005

That's odd. An AFTER UPDATE trigger shouldn't need to check existing rows in the table. I suppose it's possible that you aren't able to obtain a lock on the table to add the trigger. …
6
votes

Insert default value when parameter is null

Try an if statement ... if @value is null insert into t (value) values (default) else insert into t (value) values (@value) …
1
vote

Confirm before delete/update in SQL Management Studio?

In SSMS 2005, you can enable this option under Tools|Options|Query Execution|SQL Server|ANSI ... check SET IMPLICIT_TRANSACTIONS. That will require a commit to affect update/delete que …