Viewing 15 posts - 8,386 through 8,400 (of 9,641 total)
NuJoizey (7/16/2008)
July 16, 2008 at 2:30 pm
Almost everything in SSIS takes place in memory on the machine the package is running on. If you are running your package as a single transaction then the database...
July 16, 2008 at 2:27 pm
Jeffrey Williams (7/16/2008)
Try: Select * From ::fn_trace_getinfo(default);
Scott Duncan (7/16/2008)
[font="Courier New"]SELECT * FROM ::fn_trace_getinfo(0)[/font]
This will return details for all traces running on your system....
July 16, 2008 at 2:25 pm
There is some additional work that needs to be done in order to get ASP.NET to pass Windows credentials to SQL Server when on separate servers. It works fine...
July 16, 2008 at 2:21 pm
Were the database and web site originally on one server? Are you using a generic account for login to the database or windows authentication?
July 16, 2008 at 2:01 pm
Look in BOL under deprecated features. This does not give a list of everything like *= outer joins because that is included under compatibility versions. You can also...
July 16, 2008 at 1:56 pm
BOL is always a good place to start. Here is an article from this site that is from SQL 2000, but the concepts and process are basically the same...
July 16, 2008 at 12:26 pm
shahbaz.oradba (7/14/2008)
how can we know that particular query is taking long time and we have to optimize that,and i heared that query optimization through sqlserver profiler degrades the perfomance.?
what is...
July 16, 2008 at 12:21 pm
You can create a new data file, then you need to move existing tables or indexes to the file as only new tables would be created there otherwise.
July 16, 2008 at 12:14 pm
DKG (7/16/2008)
July 16, 2008 at 12:11 pm
Sorry, it's been a while since I have managed security and I sent you to the wrong place. On the Home page, click on the Properties tab and click...
July 16, 2008 at 10:38 am
You can query the INFORMATION_SCHEMA.COLUMNS view like this:
[font="Courier New"]SELECT
TABLE_CATALOG,
TABLE_SCHEMA,
TABLE_NAME,
COLUMN_NAME
FROM
INFORMATION_SCHEMA.COLUMNS
WHERE
COLUMN_NAME = 'SSN'[/font]
July 16, 2008 at 10:16 am
Yes there is a Like. You also need to match case so you should use a .ToUpper() when matching strings.
July 16, 2008 at 9:58 am
You need to give the users rights to the report server. You can do this using report manager or SSMS. In report manager you need to go to...
July 16, 2008 at 9:34 am
Viewing 15 posts - 8,386 through 8,400 (of 9,641 total)