Viewing 15 posts - 2,236 through 2,250 (of 5,356 total)
This is a very good site for that information
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
March 11, 2004 at 1:39 am
Although I don't really understand what you want to do, take a look at C2 auditing in BOL. Should give you what you need.
...and a whole lot more of...
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
March 11, 2004 at 1:37 am
Maybe you should post what you have so far, along with some sample data and what you expect to get. Sounds like there is an easier workaround.
For your last quesion:
No,...
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
March 10, 2004 at 8:48 am
In QA go to Extras-> Options.
Click on the result tab, select the appropriate settings in both combos (Sorry, I have the German version of QA, so i don't know their...
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
March 10, 2004 at 7:35 am
Hehe, posting this on behalf of a very knowledgeable, but shy friend ![]()
SELECT IDENTITY(int) AS ID, Order_No, Item
INTO #TempSeq
FROM Seq_T
ORDER BY Order_No, Item
...
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
March 9, 2004 at 2:06 pm
Unfortunately I know some accounting, so this is very confusing to me.
Hey Jonathan, that's more than the guys at Enron and MCI Worldcom can say ![]()
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
March 9, 2004 at 2:00 pm
I pretty often pipe the result of a query in QA to a *.csv file and print it with Excel.
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
March 9, 2004 at 1:55 pm
Well, I would probably wait if someone comes up with a solution to this and if not remove dups. Right out of the head I can't find a solution. However,...
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
March 9, 2004 at 12:40 pm
Easy is not equivalent to better ![]()
After all the formulae should not change frequently, or?
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
March 9, 2004 at 12:24 pm
Touchè, brilliant answer ![]()
Bit rough round the edges, but this might be a solution
set nocount on
if object_id('seq_t')is not null
drop table seq_t
go
create table seq_t( order_no...
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
March 9, 2004 at 8:49 am
What front-end do you use?
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
March 9, 2004 at 7:51 am
Do you want a copy of your table?
If not, you can always give an alias when querying the data of the table.
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
March 9, 2004 at 7:39 am
Please see my answer here
Well, not mine, but Kalen Delaney's.
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
March 9, 2004 at 7:37 am
Quotation from Inside SQL Server 2000:
Explicit and Implicit Transactions
By default, SQL Server treats each statement-whether it's dispatched individually or as part of a batch-as independent and immediately commits it. Logically,...
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
March 9, 2004 at 7:34 am
So, why don't you run the query when it works?
![]()
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
March 9, 2004 at 6:47 am
Viewing 15 posts - 2,236 through 2,250 (of 5,356 total)