Viewing 15 posts - 7,726 through 7,740 (of 9,641 total)
Here's the link to the duplicate, which is where I provided an answer:
August 25, 2008 at 7:05 pm
I believe the function is SUSER_SNAME() or you can use SUSER_NAME(). For domain logins they return domain\username
Oh, and please don't cross post.
Thanks,
August 25, 2008 at 7:04 pm
I'd definitely think migrating to SQL Server at least Express edition would be warranted. Access is really not designed to be multi-user back end. I'd think that the...
August 25, 2008 at 4:22 pm
In order to toggle visibility of items in SSRS you have to have something you "toggle on".
Will the user know which they want to see before they run...
August 25, 2008 at 4:08 pm
pete.trudell (8/25/2008)
August 25, 2008 at 3:32 pm
What is the trigger to decide which one is visible? Is there ever a time when both should be visible?
August 25, 2008 at 3:06 pm
They don't like it because they don't really understand it. Sure, you can do it all in SSIS Data Flows and it will work, but updating 1000 or more...
August 25, 2008 at 2:57 pm
How does 1803/86400 = 30 minutes 3 seconds (30:03)? Or is 1803 the result of the time time divided by 86400? What is the base for the time?
August 25, 2008 at 2:42 pm
Are you using Fast Load in the destination with table lock? If you are I'd go away from that as the tasks are trying to run in parallel and...
August 25, 2008 at 2:34 pm
If your Execute SQL Task is not in a loop and does not contain loops or cursors then I'd say your performance will be best using that task. If...
August 25, 2008 at 2:31 pm
When you set up your database mail profile and account did you set it up to use SSL? See my first post.
August 25, 2008 at 2:22 pm
Did you check the "This server requires a secure connection (SSL)" box? It sounds like that is what it is after.
August 25, 2008 at 1:48 pm
Could you give us a little more information? Table names, column names? Do you mean joining 3 tables or using 3 columns to join 2 tables?
Here's an example of...
August 25, 2008 at 12:57 pm
I think this will work:
[font="Courier New"]DECLARE @x TABLE (id CHAR(3), name CHAR(2), value CHAR(2))
DECLARE @y TABLE (name CHAR(2), value CHAR(2))
INSERT INTO @x
SELECT
'AXN', 'E1', 'N1'
UNION ALL
SELECT
'AXN',...
August 25, 2008 at 12:51 pm
Where are you creating and assigning the value ('M' or 'P') to a variable?
August 25, 2008 at 10:13 am
Viewing 15 posts - 7,726 through 7,740 (of 9,641 total)