Viewing 15 posts - 19,306 through 19,320 (of 22,214 total)
Just a vote. 1,2,4, yes because I've done them.
3. I'm not sure, but I lean towards no. I guess it depends on how you create the report. I'm just not...
November 10, 2008 at 6:56 am
Here is an entry in the Books Online (SQL Server documentation) that should get you started. It includes sample code.
http://msdn.microsoft.com/en-us/library/aa225983(SQL.80).aspx
November 10, 2008 at 6:49 am
You don't really have any options in SQL Server 2000. The best you can do is check after each statement for an error value and use a GO TO to...
November 10, 2008 at 6:44 am
I like that clean up. Fewer joins and a simpler query. Nicely done.
Thanks for making me look at the query again. I've still got a bit of the debugging...
November 10, 2008 at 6:22 am
That's a very good description of how to get started. If you need something a bit more fundamental, try this article on SimpleTalk[/url].
November 10, 2008 at 5:56 am
I wouldn't recommend that either for the same reasons. Itzik Ben-Gan has a great set of example scripts that show how using NOLOCK & other dirty read mechanisms can lead...
November 7, 2008 at 9:35 am
Easily done. You can set up a Profiler job to look exactly like what you want to monitor. Export that job to a SQL file using File, Export, Script Definition....
November 7, 2008 at 9:05 am
From the books online:
Setting Options Without Rebuilding
By using the SET clause in the ALTER INDEX statement, you can set the following index options without rebuilding the index:
ALLOW_PAGE_LOCKS
ALLOW_ROW_LOCKS
IGNORE_DUP_KEY
These options are...
November 7, 2008 at 9:03 am
[script]ALTER INDEX x ON z
REBUILD WITH (FILLFACTOR = 100);
[/script]
November 7, 2008 at 8:44 am
Off hours information of system slowness?
I'm guessing that setting a trace using Profiler and getting monitoring information using Performance Monitor will do what you need.
November 7, 2008 at 8:37 am
If you use the read uncommitted, you can, not only get partially updated records, but duplicate or missing records since page splits and reorders due to changes in the data...
November 7, 2008 at 7:11 am
You might want to do a search of the scripts over on the left. Look for functions that convert comma delimited lists into a table. That way you don't have...
November 7, 2008 at 6:47 am
I'm pretty sure you've already answered your own question. Create the structures in SQL Server 2008 and then use an ETL tool (like SSIS) to pump the data across.
What's wrong...
November 7, 2008 at 6:43 am
Jack's right. Those are two different applications in two different formats. You can't restore one from the other. In fact, you should do a search for MySQL conversion utilities, because...
November 7, 2008 at 6:40 am
Ah, cool. I'd say sacrifice the CPU for speed. Go with option 1. I like the use of single statement functions and the lack of hardcoded values. If had to...
November 7, 2008 at 5:40 am
Viewing 15 posts - 19,306 through 19,320 (of 22,214 total)