Viewing 15 posts - 2,131 through 2,145 (of 3,011 total)
If there is someone doing a DBA interview that doesn’t have the technical understanding to be able to weed out a bogus DBA, then they probably shouldn’t be in their...
December 23, 2008 at 3:34 pm
Marker (12/23/2008)
December 23, 2008 at 2:55 pm
The minimum amount of transaction log space required will be at least as large as the largest table in the database. This is because re-indexing rebuilds each table in...
December 23, 2008 at 8:53 am
I think there should be a separate SQL Haiku forum where both questions and answers must be posted in the form of a Haiku.
December 22, 2008 at 12:30 pm
If you want help, you should post your sql in the message in between code tags.
Most people (including me) will not open a file posted on the forum because it...
December 22, 2008 at 12:16 pm
The code you posted isn't even in valid SQL syntax.
Please supply your actual query code, table definitions, sample data, and your expected output with the sample data.
December 22, 2008 at 12:05 pm
Here is another approach on the link below. Function F_TABLE_DATE is a multistatement table-valued function that returns a table containing a variety of attributes of all dates from @FIRST_DATE...
December 22, 2008 at 10:08 am
You will have to open a cursor on the inserted table and execute the procedure once for each row returned by the cursor.
This looks like something that would be better...
December 19, 2008 at 10:26 pm
Add an ORDER BY clause to the SELECT statement that is calling the function.
December 19, 2008 at 4:07 pm
declare @t table (pk int not null primary key identity, dat varchar(10))
insert into @t (dat)
select '1' union all select '001' union all select '11' union all
select '100' union all...
December 19, 2008 at 9:04 am
This is not an easy problem to generalize.
Take this name for example: “Carl von Clausewitz”. Unless the procedure knows the conventions, how does it identify that the last name...
December 18, 2008 at 12:34 pm
I’m going to make the assumption that what you mean by “Outsourcing” is Offshore Outsourcing.
A lot of senior management types see IT as a necessary evil at best, and really...
December 12, 2008 at 10:20 pm
shane.barney (12/1/2008)
...The database is large (over 800mb, not including indexes, and growing by ~10mb per day)....
800 MB is a very small database. Did you actually mean 800 GB? ...
December 1, 2008 at 5:50 pm
gan (11/27/2008)
Michael Valentine Jones (11/25/2008)
Lynn Pettis (11/25/2008)
...Besides, this discussion has remained relatively positive (so far)...
In that case, let me jump in. 😀
There are many opinions of this subject, but I...
November 28, 2008 at 9:03 am
Viewing 15 posts - 2,131 through 2,145 (of 3,011 total)