Viewing 15 posts - 8,401 through 8,415 (of 9,641 total)
I know that this makes absolutely no sense since you already defined the operator as "=" but you need to set your value to "=Unassigned"
July 16, 2008 at 9:25 am
GilaMonster (7/16/2008)
Jack Corbett (7/16/2008)
I obviously need to read a lot more.Was a similar query available pre-2005?
No. In 2000 finding the cause of log filling was more trial and...
July 16, 2008 at 9:18 am
nicole.willis (7/16/2008)
July 16, 2008 at 9:15 am
Even with Windows Authentication they have to be granted rights to the server. In SSMS under Security -> Logins the Windows Logins would look like domain\user_name. You then...
July 16, 2008 at 9:12 am
I obviously need to read a lot more.
Was a similar query available pre-2005?
July 16, 2008 at 8:58 am
What recovery model is the database in? If you do not need to recover to point in time you should use simple mode which will remove committed transactions on...
July 16, 2008 at 8:52 am
Is there a clustered index on the source table? If the table is a heap then SQL server will use the fastest access path. You can use order by...
July 16, 2008 at 8:47 am
If I understand correctly the users in question are already connecting to the server using windows authentication and you need to change or add permissions to the database. The best...
July 16, 2008 at 8:42 am
Are you using the same table elsewhere in the package? It could be the table is locked by another process and SSIS is being denied access.
July 14, 2008 at 2:42 pm
Use BOL to learn how to use SQL 2005's built in encryption functions. If you are using SQL 2000 you need to do the encryption/decryption in the business layer....
July 14, 2008 at 2:40 pm
My first guess would be that on all the other client PC's an ALIAS has been setup for the SQL Server instance leaving out \SQLExpress. YOu would do this...
July 14, 2008 at 1:58 pm
What do you want the total hours to be for? If you want it to be for teacher, your top level group should be teacher then you can do...
July 14, 2008 at 1:45 pm
If you are inserting into an existing table you want this:
Insert INTO NewDatabase.Customers.tbl_Table
SELECT AcctID
, Name
, Payer
, Payer_Name
, Account
FROM tbl_Customers
WHERE Account IN (113, 372, 135, 021)
If you are creating the table...
July 14, 2008 at 1:32 pm
You enable database mail using the SQL Server Surface Area Configuration tool for Features. Then in SSMS you configure Database Mail Under the Management section of the server you...
July 14, 2008 at 1:30 pm
Viewing 15 posts - 8,401 through 8,415 (of 9,641 total)