Viewing 15 posts - 5,431 through 5,445 (of 9,643 total)
Laura Lin (4/7/2009)
Would you give out step by step instruction on how to install and set up your error handling component? Thanks
Laura,
Sorry it took so long to get to...
April 9, 2009 at 7:42 am
Did you run ALL the sp_configure commands in the same order I listed them? The first one enables you to see the advanced options which is what common criteria...
April 8, 2009 at 2:28 pm
You probably have Developer Edition on the PC where you are developing the package which allows the Fuzzy lookup to work, but Standard Edition does not include the Fuzzy Lookup...
April 8, 2009 at 1:58 pm
Okay since, you are on SQL Server 2005, it looks like you may have common criteria compliance enabled (newer than C2 Auditing) or someone has configured a trace to start...
April 8, 2009 at 1:37 pm
GilaMonster (4/8/2009)
Jack Corbett (4/8/2009)
Just put everyone in db_datareader role. That's good enough security.Don't you mean sysadmin?
I'm actually seeing more recognition that everyone in sysadmin is the wrong way to...
April 8, 2009 at 11:04 am
If you are running SQL Server 2000 what does this return:
SELECT * FROM fn_trace_getinfo(Default) AS FTG
If you are running 2005/2008 what does this return:
Select * From sys.traces
Also if you are...
April 8, 2009 at 10:43 am
My preference, and I emphasis preference, is this:
CREATE TABLE dbo.User_Log
(
User_Log_Id INT IDENTITY(1,1) PRIMARY KEY,
UserId INT NOT NULL,
...
April 8, 2009 at 10:32 am
That query should be selective enough to use an index lock, which in theory, should allow you to do operations on other types ('c'). What is the query...
April 8, 2009 at 10:23 am
You need to list the columns you are inserting into unless you are inserting into every column in the table, like this:
INSERT INTO tblMyTable
(
...
April 8, 2009 at 10:13 am
Just put everyone in db_datareader role. That's good enough security.
April 8, 2009 at 10:10 am
Glad I could help.
April 8, 2009 at 1:53 am
If you are using Windows Authentication for your users you can suser_sname() to return the user name.
April 7, 2009 at 1:48 pm
When you install the ReportServer service on the other machine you tell it to use/install the ReportServer database(s) on the Server that has the database engine installed.
April 7, 2009 at 11:06 am
Sorry, my bad. It's not:
=ReportItems.textbox1.Value + ReportItems.textbox2.Value
it is:
=ReportItems!textbox1.Value + ReportItems!textbox2.Value
Replace the period after ReportItems with an "!". I always do that:w00t:
April 7, 2009 at 10:02 am
Yes it is possible. You need 2 SQL Server licenses though.
April 7, 2009 at 9:49 am
Viewing 15 posts - 5,431 through 5,445 (of 9,643 total)