Viewing 15 posts - 856 through 870 (of 1,315 total)
The FairTax is not a VAT because it is only charged to the final retail consumer. Neither manufacturers nor their suppliers would pay federal tax.
To (hopefully) clarify 30% vs 23%:...
April 18, 2006 at 11:35 am
There is no exemption under the FairTax, there is a monthly check to refund the tax amount paid on a poverty-level income for your family size. This check, referred to...
April 17, 2006 at 3:40 pm
You don't have to provide an email address to read the FAQ section of the http://www.fairtax.org site, and if you want more details the Research and Rebuttals sections.
There is...
April 17, 2006 at 11:55 am
Go to http://www.fairtax.org and learn how we can get rid of the IRS.
April 17, 2006 at 8:45 am
You are more likely to get optimum execution plans in some situations if varchar fields are declared with expected max values, rather than just using 255 or 8000 or MAX...
April 17, 2006 at 8:35 am
Full backups do not affect the transaction logs. Either a database is in simple recovery mode where log records are released as soon as a transaction completes, the log is...
April 14, 2006 at 11:27 am
Sometimes I use the "Check SQL" button to get the table creation SQL, copy that to another editor and play with it.
You can do a global search-and-replace to change all...
April 13, 2006 at 2:41 pm
These files are just used a templates to create a new distribution database. If you set up replication it will create a new database with new files, the distmdl files...
April 13, 2006 at 9:19 am
I used almost the identical script Kevin posted for comparing the methods, but you have to put one empty loop in to find the baseline time for the incrementing & looping...
April 13, 2006 at 8:08 am
It's true that only the actual data is stored, so a row can be defined with many varchar(8000) fields as long as the total row size fits in 8060 bytes,...
April 13, 2006 at 7:39 am
I was originally going to suggest a WAITFOR DELAY '01:00:00' step in the package, but the amount of scripting you have to do in DTS to get it to go...
April 13, 2006 at 7:06 am
I did some testing on our oldest, slowest server and found the datediff/dateadd method squeaks past the floor(cast as float) method by 1 microsecond (3 microsec vs 4 microsec), while...
April 13, 2006 at 6:57 am
You could use sp_update_jobschedule to add an hour and exit if there was no new file, then after a successfull download reset the schedule to 5:30.
April 12, 2006 at 6:37 pm
I assign database rights based on domain groups, but I rarely see SQL Server admit that anyone new belongs to the domain group. I think the SQL server is using...
April 12, 2006 at 5:56 pm
The solution you have is reasonable, but there are many variations. I usually cast the date to a float, truncate it, and cast back to a date.
SELECT CAST(FLOOR(CAST(@x AS FLOAT))...
April 12, 2006 at 5:38 pm
Viewing 15 posts - 856 through 870 (of 1,315 total)