Viewing 15 posts - 6,481 through 6,495 (of 13,460 total)
chandraa.bollineni (11/4/2011)
Thanks for your reply.
I already checked in this way and it's already fixed those settings like both failed and successful logins.But i am not able to see what are...
Lowell
November 4, 2011 at 5:29 am
would they be asking you to use a DMV like sys.dm_exec_sessionsto get the column host_process_id?
I think that would require querying all four instances, right?
for example, ran Windows Task Manager and...
Lowell
November 4, 2011 at 5:16 am
Jack this was a double post;
In another thread we tracked down the issue:
http://www.sqlservercentral.com/Forums/FindPost1200033.aspx
Lowell
November 3, 2011 at 2:09 pm
sure but you'll have to make sure you always wrap it in brackets when refering to it:
WHERE [Fixed/Float/Step (Interest Rate Type)] = 42
to avoid that, you want to go witht...
Lowell
November 3, 2011 at 1:38 pm
you'll want to script the table out from the source, including indexes, and create it on the destination database.
then you can use the import/export wizard,and change the step that says...
Lowell
November 3, 2011 at 1:06 pm
sturner (11/3/2011)
Things you can do to make the import operation as efficient as possible:
1) put the database...
Lowell
November 3, 2011 at 12:47 pm
glad you got it fixed!
sometimes the "obvious fix" for an issue is, well, not really that obvious.
Lowell
November 3, 2011 at 10:50 am
the mail server in your databasemail profile you are using in = your Exchange Server?
i've got several profiles set up , some with the company mails erver, some with...
Lowell
November 3, 2011 at 9:33 am
i think the issue is related to the mails erver, and not your database configuration settings.
Are you using your Exchange server that Outlook points to as the mail server in...
Lowell
November 3, 2011 at 9:06 am
i usually use dynamic sql for the command, as if i'm adding a table that doesn't exist, the script will fail validation.
IF EXISTS(SELECT 1
...
Lowell
November 3, 2011 at 8:42 am
bulk insert allows you to use a format file, and the format file handles the quoted delimiters for you.
without the format file, you end up having to handle the delimiters...
Lowell
November 3, 2011 at 7:49 am
if there are different server versions, for example ServerA is SQL2005 but ServerB is SQL2008, you'll want to rebuild the indexes as well as rebuild the statistics for non-index columns;...
Lowell
November 3, 2011 at 6:57 am
since you are migrating from another table, and at least one value already exists, shouldn't you be joiing on the local data to prevent the duplicates from being inserted?
or do...
Lowell
November 2, 2011 at 6:08 am
i may be misremembering the thread; i'm searching thru my posts now to find it; i was fiddling with trying to make an example, but the clustred index i'm creating...
Lowell
November 1, 2011 at 3:14 pm
I think Gail had posted that they are logically stored in the clustered index order, and not necessarily physically stored once you look inside a page.; there was a post...
Lowell
November 1, 2011 at 2:59 pm
Viewing 15 posts - 6,481 through 6,495 (of 13,460 total)